結果

問題 No.1448 和差算
ユーザー rlangevinrlangevin
提出日時 2023-01-01 22:29:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 53,868 KB
最終ジャッジ日時 2024-05-05 05:58:37
合計ジャッジ時間 2,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,132 KB
testcase_01 AC 36 ms
52,748 KB
testcase_02 AC 36 ms
52,400 KB
testcase_03 WA -
testcase_04 AC 35 ms
51,996 KB
testcase_05 AC 35 ms
53,352 KB
testcase_06 WA -
testcase_07 AC 36 ms
52,068 KB
testcase_08 AC 37 ms
52,744 KB
testcase_09 AC 34 ms
52,996 KB
testcase_10 AC 36 ms
52,200 KB
testcase_11 AC 33 ms
52,624 KB
testcase_12 AC 35 ms
52,752 KB
testcase_13 WA -
testcase_14 AC 35 ms
53,420 KB
testcase_15 AC 35 ms
52,404 KB
testcase_16 AC 35 ms
52,704 KB
testcase_17 AC 35 ms
53,008 KB
testcase_18 AC 36 ms
52,088 KB
testcase_19 WA -
testcase_20 AC 35 ms
53,272 KB
testcase_21 AC 36 ms
52,960 KB
testcase_22 AC 34 ms
53,196 KB
testcase_23 AC 35 ms
52,560 KB
testcase_24 AC 35 ms
52,268 KB
testcase_25 AC 36 ms
52,308 KB
testcase_26 AC 35 ms
51,992 KB
testcase_27 AC 36 ms
53,008 KB
testcase_28 AC 35 ms
53,108 KB
testcase_29 AC 36 ms
52,468 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 35 ms
52,452 KB
testcase_34 AC 35 ms
53,424 KB
testcase_35 AC 36 ms
52,740 KB
testcase_36 AC 34 ms
53,012 KB
testcase_37 AC 35 ms
52,548 KB
testcase_38 AC 35 ms
52,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(N, x, y):
    q, r = divmod(N, 4)
    v = pow(-4, q, mod)
    if r == 0:
        return v * x % mod
    elif r == 1:
        return v * 2 * x % mod
    elif r == 2:
        return v * 2 * (x - y) % mod
    else:
        return v * (-4) * y % mod

A, B, C, D = map(int, input().split())
N = int(input())
mod = 10 ** 9 + 7
ans = f(N, A, C)
q, r = divmod(N, 4)
if q % 2 == 0:
    print(f(N, B, C))
else:
    print(f(N, A, D))
0