結果

問題 No.1486 ロボット
ユーザー tamatotamato
提出日時 2021-04-23 21:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 68,000 KB
最終ジャッジ日時 2024-07-04 07:36:00
合計ジャッジ時間 1,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,964 KB
testcase_01 AC 37 ms
53,224 KB
testcase_02 AC 41 ms
52,468 KB
testcase_03 AC 39 ms
52,780 KB
testcase_04 AC 37 ms
52,704 KB
testcase_05 AC 36 ms
52,456 KB
testcase_06 AC 72 ms
67,856 KB
testcase_07 AC 74 ms
68,000 KB
testcase_08 AC 59 ms
63,476 KB
testcase_09 AC 47 ms
60,196 KB
testcase_10 AC 66 ms
65,584 KB
testcase_11 AC 65 ms
66,184 KB
testcase_12 AC 56 ms
64,124 KB
testcase_13 AC 50 ms
61,820 KB
testcase_14 AC 52 ms
62,052 KB
testcase_15 AC 44 ms
60,872 KB
testcase_16 AC 47 ms
61,996 KB
testcase_17 AC 49 ms
62,636 KB
testcase_18 AC 53 ms
62,276 KB
testcase_19 AC 45 ms
60,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

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

    print(move[-1] * ((e - 1) // L) + move[(e-1) % L])


if __name__ == '__main__':
    main()
0