結果

問題 No.796 well known
ユーザー るさるさ
提出日時 2019-03-15 21:40:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,087 ms / 2,000 ms
コード長 102 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,116 KB
最終ジャッジ日時 2024-07-01 20:36:57
合計ジャッジ時間 7,612 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 534 ms
11,732 KB
testcase_05 AC 692 ms
11,816 KB
testcase_06 AC 1,087 ms
12,116 KB
testcase_07 AC 55 ms
10,880 KB
testcase_08 AC 698 ms
11,820 KB
testcase_09 AC 225 ms
11,264 KB
testcase_10 AC 1,062 ms
11,840 KB
testcase_11 AC 41 ms
10,752 KB
testcase_12 AC 138 ms
11,136 KB
testcase_13 AC 517 ms
11,604 KB
testcase_14 AC 82 ms
11,008 KB
testcase_15 AC 170 ms
11,392 KB
testcase_16 AC 1,087 ms
11,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[1 for i in range(n)]
a[0]=3
a[1]=6-(n)%3
r=""
for i in a:
    r+=str(i)+" "
print(r)
0