結果

問題 No.1448 和差算
ユーザー tamatotamato
提出日時 2021-03-31 16:23:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 54,036 KB
最終ジャッジ日時 2024-12-15 03:33:51
合計ジャッジ時間 3,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,964 KB
testcase_01 AC 38 ms
52,984 KB
testcase_02 AC 38 ms
52,644 KB
testcase_03 AC 38 ms
52,572 KB
testcase_04 AC 38 ms
52,340 KB
testcase_05 AC 38 ms
52,216 KB
testcase_06 AC 38 ms
51,952 KB
testcase_07 AC 39 ms
52,476 KB
testcase_08 AC 38 ms
52,124 KB
testcase_09 AC 38 ms
52,932 KB
testcase_10 AC 38 ms
52,448 KB
testcase_11 AC 37 ms
54,012 KB
testcase_12 AC 38 ms
52,732 KB
testcase_13 AC 37 ms
52,840 KB
testcase_14 AC 39 ms
52,744 KB
testcase_15 AC 38 ms
52,696 KB
testcase_16 AC 39 ms
53,012 KB
testcase_17 AC 38 ms
53,088 KB
testcase_18 AC 38 ms
52,328 KB
testcase_19 AC 39 ms
52,848 KB
testcase_20 AC 39 ms
52,748 KB
testcase_21 AC 38 ms
53,108 KB
testcase_22 AC 39 ms
52,788 KB
testcase_23 AC 38 ms
53,196 KB
testcase_24 AC 38 ms
53,748 KB
testcase_25 AC 38 ms
52,688 KB
testcase_26 AC 38 ms
53,044 KB
testcase_27 AC 37 ms
53,484 KB
testcase_28 AC 38 ms
52,876 KB
testcase_29 AC 38 ms
53,768 KB
testcase_30 AC 38 ms
53,396 KB
testcase_31 AC 37 ms
52,588 KB
testcase_32 AC 37 ms
53,712 KB
testcase_33 AC 37 ms
52,860 KB
testcase_34 AC 37 ms
53,544 KB
testcase_35 AC 37 ms
52,988 KB
testcase_36 AC 38 ms
53,148 KB
testcase_37 AC 38 ms
54,036 KB
testcase_38 AC 39 ms
52,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline
    a, b, c, d = map(int, input().split())
    N = int(input())
    x = y = pow(2, (N+1) // 2, mod)
    if 0 <= N%8 < 3:
        x *= b
    elif 4 <= N%8 < 7:
        x *= -a
    else:
        x = 0
    if N%8 == 0 or 6 <= N%8:
        y *= d
    elif 2 <= N%8 <= 4:
        y *= -c
    else:
        y = 0
    print((x + y)%mod)


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