# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
73209 | 2018-08-28T04:51:00 Z | ainta(#2272) | Happiness (Balkan15_HAPPINESS) | C++11 | 0 ms | 0 KB |
#include "happiness.h" bool init(int coinsCount, long long maxCoinSize, long long coins[]) { return true; } bool is_happy(int event, int coinsCount, long long coins[]) { if (event == -1)return false; return true; }