結果

問題 No.796 well known
ユーザー stngstng
提出日時 2022-07-02 10:31:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-11-27 03:21:15
合計ジャッジ時間 2,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 64 ms
76,800 KB
testcase_05 AC 69 ms
77,952 KB
testcase_06 AC 70 ms
78,592 KB
testcase_07 AC 58 ms
64,896 KB
testcase_08 AC 70 ms
78,336 KB
testcase_09 AC 61 ms
71,552 KB
testcase_10 AC 72 ms
78,464 KB
testcase_11 AC 52 ms
63,232 KB
testcase_12 AC 58 ms
70,144 KB
testcase_13 AC 66 ms
76,928 KB
testcase_14 AC 57 ms
67,456 KB
testcase_15 AC 60 ms
71,040 KB
testcase_16 AC 72 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = [1]*n
ans[0] = 3

if sum(ans) % 3 == 0:
    ans[n-1] = 2
elif sum(ans) % 3 == 1:
    ans[n-1] = 1
elif sum(ans) % 3 == 2:
    ans[n-1] = 3

print(*ans)
0