結果

問題 No.2679 MODice
ユーザー Yakumo221Yakumo221
提出日時 2024-03-20 21:16:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 85 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 53,296 KB
最終ジャッジ日時 2024-09-30 07:02:58
合計ジャッジ時間 1,413 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,868 KB
testcase_01 AC 32 ms
52,740 KB
testcase_02 AC 31 ms
52,028 KB
testcase_03 AC 31 ms
51,944 KB
testcase_04 AC 32 ms
53,296 KB
testcase_05 AC 32 ms
52,188 KB
testcase_06 AC 33 ms
52,400 KB
testcase_07 AC 33 ms
52,236 KB
testcase_08 AC 31 ms
52,360 KB
testcase_09 AC 32 ms
53,008 KB
testcase_10 AC 32 ms
52,704 KB
testcase_11 AC 32 ms
52,372 KB
testcase_12 AC 30 ms
51,816 KB
testcase_13 AC 31 ms
52,856 KB
testcase_14 AC 32 ms
52,516 KB
testcase_15 AC 31 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n,k = map(int, input().split())

div = pow(6, MOD-2, MOD)
print(div)
0