結果

問題 No.1486 ロボット
ユーザー stngstng
提出日時 2021-09-06 20:10:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 77,492 KB
最終ジャッジ日時 2024-06-02 03:24:53
合計ジャッジ時間 1,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,068 KB
testcase_01 AC 31 ms
53,400 KB
testcase_02 AC 32 ms
53,788 KB
testcase_03 AC 33 ms
53,488 KB
testcase_04 AC 33 ms
52,800 KB
testcase_05 AC 33 ms
53,944 KB
testcase_06 AC 58 ms
76,732 KB
testcase_07 AC 58 ms
77,492 KB
testcase_08 AC 50 ms
68,744 KB
testcase_09 AC 39 ms
53,912 KB
testcase_10 AC 43 ms
62,400 KB
testcase_11 AC 42 ms
62,096 KB
testcase_12 AC 42 ms
61,168 KB
testcase_13 AC 35 ms
52,520 KB
testcase_14 AC 52 ms
65,652 KB
testcase_15 AC 46 ms
61,988 KB
testcase_16 AC 48 ms
63,072 KB
testcase_17 AC 44 ms
63,184 KB
testcase_18 AC 43 ms
63,356 KB
testcase_19 AC 44 ms
62,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a,b,c,d,e = map(int,input().split())

on = a+b
tw = c+d

prd = (on*tw)//math.gcd(on,tw)

li = [0]*(prd)

for i in range(prd):
    if i%on <= a-1 and i%tw <= c-1:
        li[i] = 1

rui = [0]*(prd+1)

for i in range(prd):
    rui[i+1] = rui[i]+li[i]
#print(li)
#print(rui)
#print(prd,e%prd)

prd_sum = sum(li)
print(prd_sum*(e//prd)+rui[e%prd])
0