結果

問題 No.1663 Maximum Remainder
ユーザー tamatotamato
提出日時 2021-09-03 21:40:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 60,376 KB
最終ジャッジ日時 2024-12-15 11:13:23
合計ジャッジ時間 1,439 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
59,348 KB
testcase_01 AC 56 ms
59,252 KB
testcase_02 AC 34 ms
53,192 KB
testcase_03 AC 33 ms
52,744 KB
testcase_04 AC 35 ms
52,936 KB
testcase_05 AC 42 ms
60,376 KB
testcase_06 AC 39 ms
58,508 KB
testcase_07 AC 37 ms
59,112 KB
testcase_08 AC 36 ms
58,600 KB
testcase_09 AC 36 ms
57,896 KB
testcase_10 AC 36 ms
58,192 KB
testcase_11 AC 36 ms
53,200 KB
testcase_12 AC 37 ms
58,732 KB
testcase_13 AC 35 ms
53,004 KB
testcase_14 AC 34 ms
52,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


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

    a, b, c, d, m = map(int, input().split())
    ans = 0
    for x in range(a, b+1):
        for y in range(c, d+1):
            ans = max(ans, (x+y)%m)
    print(ans)


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