結果

問題 No.2830 Don't Stop the Game
ユーザー KudeKude
提出日時 2024-08-02 22:19:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 61,976 KB
最終ジャッジ日時 2024-08-02 22:19:30
合計ジャッジ時間 3,152 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,280 KB
testcase_01 AC 43 ms
61,080 KB
testcase_02 AC 43 ms
61,032 KB
testcase_03 AC 43 ms
60,388 KB
testcase_04 AC 43 ms
60,288 KB
testcase_05 AC 42 ms
60,060 KB
testcase_06 AC 42 ms
61,160 KB
testcase_07 AC 42 ms
60,740 KB
testcase_08 AC 43 ms
60,328 KB
testcase_09 AC 43 ms
60,220 KB
testcase_10 AC 43 ms
60,488 KB
testcase_11 AC 43 ms
61,152 KB
testcase_12 AC 42 ms
59,992 KB
testcase_13 AC 43 ms
61,316 KB
testcase_14 AC 42 ms
61,132 KB
testcase_15 AC 43 ms
61,532 KB
testcase_16 AC 42 ms
60,552 KB
testcase_17 AC 43 ms
61,080 KB
testcase_18 AC 42 ms
60,888 KB
testcase_19 AC 43 ms
61,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = 30
p = list(range(1, n + 1))
q = n + n
print(q)
for i in range(n):
    print(2)
    print(*p)
    p.append(p.pop(0))
for j in range(1, n + 1):
    s = sum(j ** i for i in range(n))
    print(4)
    print(j, pow(s * n, -1, mod))
0