結果

問題 No.2830 Don't Stop the Game
ユーザー ねしんねしん
提出日時 2024-06-09 13:22:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 60,316 KB
最終ジャッジ日時 2024-06-22 08:50:04
合計ジャッジ時間 3,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,316 KB
testcase_01 AC 41 ms
58,772 KB
testcase_02 AC 39 ms
58,892 KB
testcase_03 AC 40 ms
58,764 KB
testcase_04 AC 43 ms
58,992 KB
testcase_05 AC 40 ms
59,840 KB
testcase_06 AC 39 ms
59,368 KB
testcase_07 AC 38 ms
59,256 KB
testcase_08 AC 42 ms
60,060 KB
testcase_09 AC 39 ms
59,552 KB
testcase_10 AC 46 ms
59,432 KB
testcase_11 AC 47 ms
59,788 KB
testcase_12 AC 40 ms
60,112 KB
testcase_13 AC 39 ms
59,132 KB
testcase_14 AC 39 ms
59,520 KB
testcase_15 AC 40 ms
59,628 KB
testcase_16 AC 40 ms
60,256 KB
testcase_17 AC 39 ms
59,264 KB
testcase_18 AC 39 ms
60,208 KB
testcase_19 AC 39 ms
58,984 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)
def Lagrange(x):
	ans=1
	for i in range(1,N+1):
		if i==x:
			continue
		ans=(ans*((0-i)%MOD))%MOD
		ans=(ans*(pow((x-i)%MOD,MOD-2,MOD)))%MOD
	return ans
for i in range(1,N+1):
	print(4)
	print(i,Lagrange(i))
0