結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー Noah CollinsNoah Collins
提出日時 2022-11-21 14:52:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 86 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-09-22 07:20:40
合計ジャッジ時間 5,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 RE -
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 108 ms
43,012 KB
testcase_14 AC 47 ms
18,432 KB
testcase_15 AC 141 ms
53,308 KB
testcase_16 AC 108 ms
42,796 KB
testcase_17 AC 119 ms
47,748 KB
testcase_18 AC 121 ms
48,004 KB
testcase_19 AC 146 ms
54,564 KB
testcase_20 AC 81 ms
32,772 KB
testcase_21 AC 43 ms
16,128 KB
testcase_22 AC 74 ms
30,556 KB
testcase_23 AC 123 ms
47,960 KB
testcase_24 AC 36 ms
13,824 KB
testcase_25 AC 131 ms
51,036 KB
testcase_26 AC 65 ms
26,008 KB
testcase_27 AC 108 ms
42,848 KB
testcase_28 AC 66 ms
25,884 KB
testcase_29 AC 133 ms
51,128 KB
testcase_30 AC 82 ms
33,236 KB
testcase_31 AC 105 ms
42,308 KB
testcase_32 AC 124 ms
48,972 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