結果

問題 No.1486 ロボット
ユーザー Ultimate_Tea_04Ultimate_Tea_04
提出日時 2021-04-23 21:33:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 597 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 18,372 KB
最終ジャッジ日時 2024-07-04 07:41:32
合計ジャッジ時間 3,311 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,496 KB
testcase_06 AC 597 ms
18,288 KB
testcase_07 AC 559 ms
18,372 KB
testcase_08 AC 286 ms
14,464 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 68 ms
11,136 KB
testcase_11 AC 69 ms
11,008 KB
testcase_12 AC 33 ms
10,496 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 181 ms
13,952 KB
testcase_15 AC 61 ms
11,392 KB
testcase_16 AC 101 ms
12,288 KB
testcase_17 AC 92 ms
11,904 KB
testcase_18 AC 99 ms
11,520 KB
testcase_19 AC 49 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def lcm(x,y):
    def gcd(x, y):
        if y == 0:
            return x
        else:
            return gcd(y,x%y)
    return (x*y)//gcd(x,y)

s = list(map(int,input().split()))
lc = lcm(s[0]+s[1],s[2]+s[3])
sec = [0]*lc
for i in range(0,lc):
    x = i%(s[0]+s[1])
    y = i%(s[2]+s[3])
    if x<s[0] and y<s[2]:
        sec[i] = 1
print(sum(sec)*(s[4]//lc)+sum(sec[:s[4]%lc]))
0