結果

問題 No.1448 和差算
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-11 05:10:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 54,080 KB
最終ジャッジ日時 2024-09-11 05:10:58
合計ジャッジ時間 3,268 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,132 KB
testcase_01 AC 37 ms
52,824 KB
testcase_02 AC 38 ms
53,152 KB
testcase_03 AC 37 ms
52,872 KB
testcase_04 AC 38 ms
53,740 KB
testcase_05 AC 36 ms
53,620 KB
testcase_06 AC 37 ms
53,240 KB
testcase_07 AC 37 ms
53,000 KB
testcase_08 AC 37 ms
52,836 KB
testcase_09 AC 37 ms
52,820 KB
testcase_10 AC 37 ms
53,192 KB
testcase_11 AC 36 ms
52,824 KB
testcase_12 AC 36 ms
52,836 KB
testcase_13 AC 36 ms
53,912 KB
testcase_14 AC 36 ms
52,996 KB
testcase_15 AC 36 ms
53,660 KB
testcase_16 AC 37 ms
53,100 KB
testcase_17 AC 37 ms
52,276 KB
testcase_18 AC 37 ms
52,272 KB
testcase_19 AC 38 ms
53,804 KB
testcase_20 AC 37 ms
52,620 KB
testcase_21 AC 36 ms
51,940 KB
testcase_22 AC 37 ms
53,072 KB
testcase_23 AC 37 ms
52,260 KB
testcase_24 AC 36 ms
53,652 KB
testcase_25 AC 37 ms
52,896 KB
testcase_26 AC 38 ms
53,312 KB
testcase_27 AC 37 ms
53,236 KB
testcase_28 AC 37 ms
52,804 KB
testcase_29 AC 36 ms
53,636 KB
testcase_30 AC 36 ms
52,196 KB
testcase_31 AC 36 ms
52,760 KB
testcase_32 AC 37 ms
52,316 KB
testcase_33 AC 36 ms
53,428 KB
testcase_34 AC 36 ms
52,676 KB
testcase_35 AC 37 ms
53,464 KB
testcase_36 AC 37 ms
54,080 KB
testcase_37 AC 37 ms
52,860 KB
testcase_38 AC 37 ms
52,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d=map(int,input().split())
n=int(input())
M=10**9+7
if n%8==0:
	g=max(x+y for x in [a,b] for y in [c,d])
if n%8==1:
	g=max(x-y+x+y for x in [a,b] for y in [c,d])
if n%8==2:
	g=max(-2*y+2*x for x in [a,b] for y in [c,d])
if n%8==3:
	g=max(-2*x-2*y+2*x-2*y for x in [a,b] for y in [c,d])
if n%8==4:
	g=max(-4*x-4*y for x in [a,b] for y in [c,d])
if n%8==5:
	g=max(-4*x+4*y-4*x-4*y for x in [a,b] for y in [c,d])
if n%8==6:
	g=max(8*y+-8*x for x in [a,b] for y in [c,d])
if n%8==7:
	g=max(8*x+8*y-8*x+8*y for x in [a,b] for y in [c,d])
print(g*pow(16,n//8,M)%M)
0