結果

問題 No.796 well known
ユーザー takakintakakin
提出日時 2020-04-18 15:51:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,192 KB
最終ジャッジ日時 2024-10-03 23:49:49
合計ジャッジ時間 2,369 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 68 ms
12,608 KB
testcase_05 AC 72 ms
12,800 KB
testcase_06 AC 87 ms
13,192 KB
testcase_07 AC 41 ms
11,264 KB
testcase_08 AC 73 ms
12,808 KB
testcase_09 AC 58 ms
12,056 KB
testcase_10 AC 81 ms
13,188 KB
testcase_11 AC 36 ms
11,008 KB
testcase_12 AC 53 ms
11,856 KB
testcase_13 AC 69 ms
12,484 KB
testcase_14 AC 47 ms
11,644 KB
testcase_15 AC 53 ms
11,880 KB
testcase_16 AC 82 ms
13,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
if (n-1)%3==0:
  Ans=[2]+[1]*(n-2)+[3]
elif (n-1)%3==1:
  Ans=[1]*(n-1)+[3]
else:
  Ans=[2]*2+[1]*(n-3)+[3]
print(*Ans)
0