結果

問題 No.1486 ロボット
ユーザー あかりきあかりき
提出日時 2021-04-24 20:54:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 137,680 KB
最終ジャッジ日時 2024-07-04 09:14:58
合計ジャッジ時間 2,229 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,168 KB
testcase_01 AC 41 ms
52,440 KB
testcase_02 AC 41 ms
52,708 KB
testcase_03 AC 38 ms
51,752 KB
testcase_04 AC 39 ms
52,132 KB
testcase_05 AC 38 ms
52,212 KB
testcase_06 AC 98 ms
137,680 KB
testcase_07 AC 97 ms
136,380 KB
testcase_08 AC 76 ms
97,892 KB
testcase_09 AC 59 ms
77,540 KB
testcase_10 AC 92 ms
124,456 KB
testcase_11 AC 91 ms
125,104 KB
testcase_12 AC 73 ms
94,164 KB
testcase_13 AC 58 ms
77,672 KB
testcase_14 AC 63 ms
82,460 KB
testcase_15 AC 50 ms
64,916 KB
testcase_16 AC 56 ms
71,900 KB
testcase_17 AC 54 ms
69,908 KB
testcase_18 AC 65 ms
83,028 KB
testcase_19 AC 51 ms
66,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d,e=map(int,input().split())
n=(a+b)*(c+d)
L=[]
for i in range(n):
  if i%(a+b)<a and i%(c+d)<c:
    L.append(1)
  else:
    L.append(0)

print(sum(L)*(e//n)+sum(L[0:e%n]))
0