結果

問題 No.1486 ロボット
ユーザー dangodango
提出日時 2023-06-25 14:42:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 63,232 KB
最終ジャッジ日時 2024-07-02 13:17:12
合計ジャッジ時間 2,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,876 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 38 ms
51,456 KB
testcase_03 AC 37 ms
51,328 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 70 ms
61,824 KB
testcase_07 AC 69 ms
61,696 KB
testcase_08 AC 56 ms
58,112 KB
testcase_09 AC 49 ms
57,856 KB
testcase_10 AC 78 ms
62,208 KB
testcase_11 AC 80 ms
62,208 KB
testcase_12 AC 58 ms
63,232 KB
testcase_13 AC 50 ms
57,984 KB
testcase_14 AC 55 ms
60,672 KB
testcase_15 AC 45 ms
59,392 KB
testcase_16 AC 46 ms
58,368 KB
testcase_17 AC 49 ms
58,752 KB
testcase_18 AC 53 ms
59,008 KB
testcase_19 AC 47 ms
59,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    A, B, C, D, E = map(int, input().split())
    dur = (A + B) * (C + D)
    num = E // dur
    rem = E % dur
    n = calc(A, B, C, D, dur) * num
    n += calc(A, B, C, D, rem)
    print(n)
def calc(A, B, C, D, E):
    n = 0
    for t in range(E):
        if t % (A + B) < A and t % (C + D) < C:
            n += 1
    return n
main()
0