結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー mathshabmathshab
提出日時 2017-06-26 13:09:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-15 01:52:34
合計ジャッジ時間 1,279 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#487 2017calculation
M=int(input())
a=2017%M
a2=a*a
a2%=M
a32=a2*a2
a32%=M
for i in range(3):
    a32*=a32
    a32%=M
i=0
b=[0]*6
b[i]=a2*a32
b[i]%=M
S=1
for i in range(1,5):
    b[i]=b[i-1]*b[i-1]
    b[i]%=M
    S*=b[i]
    S%=M
S+=a
S%=M
print(S)
0