結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー haddock2022haddock2022
提出日時 2022-07-24 10:12:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 85 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 53,428 KB
最終ジャッジ日時 2024-07-06 04:05:14
合計ジャッジ時間 3,659 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,112 KB
testcase_01 AC 34 ms
52,508 KB
testcase_02 AC 35 ms
53,044 KB
testcase_03 AC 36 ms
52,476 KB
testcase_04 AC 35 ms
52,984 KB
testcase_05 AC 33 ms
52,984 KB
testcase_06 AC 34 ms
52,556 KB
testcase_07 AC 33 ms
53,428 KB
testcase_08 AC 33 ms
52,408 KB
testcase_09 AC 32 ms
52,488 KB
testcase_10 AC 32 ms
52,296 KB
testcase_11 AC 31 ms
52,744 KB
testcase_12 AC 31 ms
53,012 KB
testcase_13 AC 32 ms
53,012 KB
testcase_14 AC 33 ms
52,988 KB
testcase_15 AC 33 ms
52,360 KB
testcase_16 AC 31 ms
52,488 KB
testcase_17 AC 33 ms
52,500 KB
testcase_18 AC 33 ms
52,212 KB
testcase_19 AC 32 ms
52,768 KB
testcase_20 AC 34 ms
53,216 KB
testcase_21 AC 31 ms
52,724 KB
testcase_22 AC 32 ms
52,316 KB
testcase_23 AC 32 ms
52,024 KB
testcase_24 AC 33 ms
52,984 KB
testcase_25 AC 33 ms
53,008 KB
testcase_26 AC 33 ms
51,828 KB
testcase_27 AC 32 ms
53,172 KB
testcase_28 AC 30 ms
52,948 KB
testcase_29 AC 32 ms
52,988 KB
testcase_30 AC 31 ms
53,128 KB
testcase_31 AC 31 ms
52,152 KB
testcase_32 AC 31 ms
52,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, n = list(map(int,input().split()))
MOD = 998244353
print(MOD)
print(pow(a,n,MOD))
0