結果

問題 No.1486 ロボット
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-12 01:24:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 63,868 KB
最終ジャッジ日時 2024-11-14 12:36:46
合計ジャッジ時間 2,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,548 KB
testcase_01 AC 37 ms
53,440 KB
testcase_02 AC 38 ms
52,628 KB
testcase_03 AC 38 ms
52,084 KB
testcase_04 AC 37 ms
52,768 KB
testcase_05 AC 37 ms
51,696 KB
testcase_06 AC 38 ms
52,324 KB
testcase_07 AC 54 ms
60,952 KB
testcase_08 AC 37 ms
52,952 KB
testcase_09 AC 44 ms
59,364 KB
testcase_10 AC 61 ms
63,224 KB
testcase_11 AC 60 ms
62,912 KB
testcase_12 AC 53 ms
62,616 KB
testcase_13 AC 45 ms
58,708 KB
testcase_14 AC 53 ms
62,408 KB
testcase_15 AC 51 ms
62,964 KB
testcase_16 AC 50 ms
63,868 KB
testcase_17 AC 52 ms
63,860 KB
testcase_18 AC 53 ms
62,580 KB
testcase_19 AC 51 ms
62,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d,e = map(int,input().split())
lim = (a+b)*(c+d)
x = a+b
y = c+d
cnt=0

if e <= lim:
    for i in range(1,e+1):
        if 1 <= i%x <= a and 1 <= i%y <= c:
            cnt+=1
    print(cnt)

else:
    for i in range(1,lim+1):
        if 1 <= i%x <= a and 1 <= i%y <= c:
            cnt+=1
    div,mod=divmod(e,lim)
    cnt = div*cnt
    
    for i in range(1,mod+1):
        if 1 <= i%x <= a and 1 <= i%y <= c:
            cnt+=1
    
    print(cnt)
0