結果
問題 | No.1486 ロボット |
ユーザー | tarattata1 |
提出日時 | 2020-04-18 22:45:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 439 bytes |
コンパイル時間 | 152 ms |
コンパイル使用メモリ | 31,360 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-04 09:41:15 |
合計ジャッジ時間 | 3,549 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <cstdio> using namespace std; int calc(int a, int b, int c, int d, int e) { int cnt = 0; int i; for (i = 0; i < e; i++) { if (i % (a + b) < a && i % (c + d) < c) { cnt++; } } return cnt; } int main() { int a, b, c, d, e; scanf("%d%d%d%d%d", &a, &b, &c, &d, &e); int lim = (a + b)*(c + d); int ans = calc(a, b, c, d, e); printf("%d\n", ans); return 0; }