結果

問題 No.796 well known
ユーザー shimonohnishishimonohnishi
提出日時 2024-11-04 13:54:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 79,696 KB
最終ジャッジ日時 2024-11-04 13:54:31
合計ジャッジ時間 2,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,192 KB
testcase_01 AC 37 ms
52,444 KB
testcase_02 AC 36 ms
52,156 KB
testcase_03 AC 37 ms
52,140 KB
testcase_04 AC 57 ms
77,612 KB
testcase_05 AC 59 ms
78,848 KB
testcase_06 AC 61 ms
79,272 KB
testcase_07 AC 49 ms
65,864 KB
testcase_08 AC 60 ms
78,640 KB
testcase_09 AC 53 ms
72,828 KB
testcase_10 AC 63 ms
79,652 KB
testcase_11 AC 48 ms
65,276 KB
testcase_12 AC 53 ms
71,744 KB
testcase_13 AC 55 ms
77,168 KB
testcase_14 AC 50 ms
69,332 KB
testcase_15 AC 52 ms
72,472 KB
testcase_16 AC 62 ms
79,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = [3] + [1] * (N - 1)

s = sum(ans)
while s % 3 != 1:
    ans[-1] += 1
    s += 1

print(*ans)
0