結果

問題 No.796 well known
ユーザー zyxwzyxw
提出日時 2021-03-08 16:33:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 79,952 KB
最終ジャッジ日時 2024-10-10 03:30:23
合計ジャッジ時間 2,290 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,380 KB
testcase_01 AC 37 ms
52,428 KB
testcase_02 AC 37 ms
53,908 KB
testcase_03 AC 38 ms
53,048 KB
testcase_04 AC 58 ms
77,000 KB
testcase_05 AC 62 ms
79,396 KB
testcase_06 AC 67 ms
79,300 KB
testcase_07 AC 50 ms
65,696 KB
testcase_08 AC 60 ms
78,548 KB
testcase_09 AC 54 ms
73,352 KB
testcase_10 AC 62 ms
79,484 KB
testcase_11 AC 48 ms
65,392 KB
testcase_12 AC 55 ms
70,864 KB
testcase_13 AC 58 ms
76,916 KB
testcase_14 AC 52 ms
67,716 KB
testcase_15 AC 54 ms
71,500 KB
testcase_16 AC 68 ms
79,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
data=[3]+[1]*(N-1)
if sum(data)%3==0:
    data[1]=2
elif sum(data)%3==2:
    data[1]=3
print(*data)
0