結果

問題 No.2830 Don't Stop the Game
ユーザー ねしんねしん
提出日時 2024-07-15 11:16:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 60,484 KB
最終ジャッジ日時 2024-07-15 11:16:29
合計ジャッジ時間 3,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,892 KB
testcase_01 AC 47 ms
60,400 KB
testcase_02 AC 45 ms
59,140 KB
testcase_03 AC 48 ms
59,824 KB
testcase_04 AC 45 ms
58,572 KB
testcase_05 AC 46 ms
59,392 KB
testcase_06 AC 45 ms
59,728 KB
testcase_07 AC 46 ms
60,196 KB
testcase_08 AC 45 ms
59,672 KB
testcase_09 AC 45 ms
60,392 KB
testcase_10 AC 46 ms
59,780 KB
testcase_11 AC 45 ms
59,048 KB
testcase_12 AC 44 ms
58,852 KB
testcase_13 AC 46 ms
58,512 KB
testcase_14 AC 45 ms
59,292 KB
testcase_15 AC 45 ms
58,912 KB
testcase_16 AC 51 ms
60,484 KB
testcase_17 AC 45 ms
59,020 KB
testcase_18 AC 45 ms
60,248 KB
testcase_19 AC 48 ms
59,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=30
MOD=998244353
print(2*N)
for i in range(N):
	Q=[]
	for j in range(N):
		Q.append((i+j)%N+1)
	print(2)
	print(*Q)
print(4)
print(1,pow(900,MOD-2,MOD))
for i in range(2,N+1):
	print(4)
	print(i,(pow(pow(i,30,MOD)-1,MOD-2,MOD)*(i-1)*pow(30,MOD-2,MOD))%MOD)
0