結果

問題 No.1486 ロボット
ユーザー ygd.ygd.
提出日時 2021-04-23 21:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 138,112 KB
最終ジャッジ日時 2024-07-04 07:35:58
合計ジャッジ時間 2,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
51,880 KB
testcase_04 AC 35 ms
51,584 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 105 ms
137,728 KB
testcase_07 AC 106 ms
138,112 KB
testcase_08 AC 79 ms
98,688 KB
testcase_09 AC 58 ms
77,696 KB
testcase_10 AC 90 ms
115,456 KB
testcase_11 AC 93 ms
115,456 KB
testcase_12 AC 74 ms
94,464 KB
testcase_13 AC 56 ms
77,056 KB
testcase_14 AC 66 ms
81,920 KB
testcase_15 AC 52 ms
65,280 KB
testcase_16 AC 58 ms
72,192 KB
testcase_17 AC 56 ms
69,248 KB
testcase_18 AC 67 ms
81,408 KB
testcase_19 AC 52 ms
66,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d,e = map(int,input().split())
loop = (a+b)*(c+d)
ok = [0]
for i in range(1,loop+1):
    pre = ok[-1]
    if 0 < i%(a+b) <= a and 0 < i%(c+d) <= c:
        ok.append(pre+1)
    else:
        ok.append(pre)
#print(ok)
num = e//loop
amari = e%loop
ans = num*ok[-1] + ok[amari]
print(ans)
0