結果

問題 No.1486 ロボット
ユーザー kikagekikage
提出日時 2021-08-11 16:44:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,508 KB
最終ジャッジ日時 2024-09-25 03:25:56
合計ジャッジ時間 3,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 353 ms
18,388 KB
testcase_07 AC 349 ms
18,560 KB
testcase_08 AC 177 ms
14,592 KB
testcase_09 AC 85 ms
12,672 KB
testcase_10 AC 285 ms
21,508 KB
testcase_11 AC 277 ms
21,412 KB
testcase_12 AC 162 ms
14,976 KB
testcase_13 AC 131 ms
12,800 KB
testcase_14 AC 137 ms
13,824 KB
testcase_15 AC 47 ms
11,264 KB
testcase_16 AC 64 ms
12,288 KB
testcase_17 AC 69 ms
12,160 KB
testcase_18 AC 108 ms
13,952 KB
testcase_19 AC 48 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C,D,E = map(int,input().split())
together=[0]*(A+B)*(C+D)
for t in range((A+B)*(C+D)):
    if t%(A+B)<A and t%(C+D)<C:together[t]=1

print(sum(together)*(E//((A+B)*(C+D))) + sum(together[:E%((A+B)*(C+D))]))
0