結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー Kiri8128Kiri8128
提出日時 2022-04-18 23:04:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 86,716 KB
実行使用メモリ 71,544 KB
最終ジャッジ日時 2023-08-16 14:22:43
合計ジャッジ時間 7,664 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,512 KB
testcase_01 AC 69 ms
71,172 KB
testcase_02 AC 68 ms
71,332 KB
testcase_03 AC 69 ms
71,388 KB
testcase_04 AC 69 ms
71,292 KB
testcase_05 AC 71 ms
70,960 KB
testcase_06 AC 70 ms
71,188 KB
testcase_07 AC 69 ms
71,104 KB
testcase_08 AC 70 ms
71,432 KB
testcase_09 AC 70 ms
71,300 KB
testcase_10 AC 72 ms
71,148 KB
testcase_11 AC 69 ms
71,144 KB
testcase_12 AC 68 ms
71,484 KB
testcase_13 AC 68 ms
71,544 KB
testcase_14 AC 68 ms
71,300 KB
testcase_15 AC 67 ms
71,540 KB
testcase_16 AC 67 ms
71,536 KB
testcase_17 AC 69 ms
71,284 KB
testcase_18 AC 68 ms
70,960 KB
testcase_19 AC 69 ms
71,428 KB
testcase_20 AC 66 ms
71,100 KB
testcase_21 AC 70 ms
71,288 KB
testcase_22 AC 69 ms
71,204 KB
testcase_23 AC 70 ms
71,188 KB
testcase_24 AC 70 ms
71,152 KB
testcase_25 AC 68 ms
71,508 KB
testcase_26 AC 70 ms
71,296 KB
testcase_27 AC 69 ms
71,328 KB
testcase_28 AC 67 ms
71,244 KB
testcase_29 AC 75 ms
71,288 KB
testcase_30 AC 69 ms
71,284 KB
testcase_31 AC 69 ms
70,956 KB
testcase_32 AC 71 ms
71,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 998244353
a, n = map(int, input().split())
assert 2 <= a <= 1000
assert 2 <= n <= 10 ** 18
print(P)
print(pow(a, n, P))
# print(10000000)
# print(3741824)
# print(998244353)
# print(877641551)
0