結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー Noah CollinsNoah Collins
提出日時 2022-11-21 14:58:01
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 86 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 106,624 KB
最終ジャッジ日時 2024-09-22 07:23:39
合計ジャッジ時間 5,784 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,324 KB
testcase_01 AC 37 ms
52,440 KB
testcase_02 RE -
testcase_03 AC 38 ms
52,316 KB
testcase_04 AC 38 ms
52,628 KB
testcase_05 AC 38 ms
53,216 KB
testcase_06 AC 37 ms
52,080 KB
testcase_07 AC 37 ms
52,960 KB
testcase_08 AC 37 ms
52,552 KB
testcase_09 AC 37 ms
52,940 KB
testcase_10 AC 36 ms
53,372 KB
testcase_11 AC 37 ms
53,072 KB
testcase_12 AC 37 ms
52,968 KB
testcase_13 AC 119 ms
90,584 KB
testcase_14 AC 49 ms
63,540 KB
testcase_15 AC 163 ms
105,496 KB
testcase_16 AC 119 ms
89,132 KB
testcase_17 AC 123 ms
90,468 KB
testcase_18 AC 140 ms
98,032 KB
testcase_19 AC 168 ms
106,624 KB
testcase_20 AC 94 ms
85,996 KB
testcase_21 AC 45 ms
59,916 KB
testcase_22 AC 79 ms
76,148 KB
testcase_23 AC 143 ms
97,884 KB
testcase_24 AC 42 ms
57,840 KB
testcase_25 AC 160 ms
103,284 KB
testcase_26 AC 75 ms
76,624 KB
testcase_27 AC 114 ms
89,280 KB
testcase_28 AC 71 ms
76,804 KB
testcase_29 AC 161 ms
104,024 KB
testcase_30 AC 97 ms
86,184 KB
testcase_31 AC 115 ms
89,260 KB
testcase_32 AC 154 ms
102,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=998244353
a,n=map(int,input().split())
b=1
exec('b*=a%M;b%=M;'*n)
print(f'{M}\n{b}')
0