結果

問題 No.1486 ロボット
ユーザー TomoyarnTomoyarn
提出日時 2021-12-27 16:56:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 345 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 848,252 KB
最終ジャッジ日時 2024-09-25 10:39:23
合計ジャッジ時間 5,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 56 ms
61,824 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 RE -
testcase_08 AC 39 ms
52,096 KB
testcase_09 RE -
testcase_10 AC 230 ms
204,288 KB
testcase_11 AC 228 ms
204,256 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

M1, S1, M2, S2, N = map(int, input().split())

dp = [0] * (N + sum([M1, S1, M2, S2]))

i = 0
while i <= N:
    for j in range(M1):
        dp[i] += 1
        i += 1
    for j in range(S1):
        i += 1

i = 0
while i <= N:
    for j in range(M2):
        dp[i] += 1
        i += 1
    for j in range(S2):
        i += 1

print(dp[:N].count(2))
0