結果

問題 No.478 一般門松列列
ユーザー vwxyzvwxyz
提出日時 2023-07-14 07:08:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 170 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-09-15 15:26:19
合計ジャッジ時間 4,938 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 29 ms
10,368 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 29 ms
10,368 KB
testcase_06 WA -
testcase_07 AC 29 ms
10,240 KB
testcase_08 AC 29 ms
10,240 KB
testcase_09 AC 28 ms
10,496 KB
testcase_10 WA -
testcase_11 AC 43 ms
11,264 KB
testcase_12 AC 44 ms
11,136 KB
testcase_13 WA -
testcase_14 AC 42 ms
11,136 KB
testcase_15 WA -
testcase_16 AC 34 ms
10,880 KB
testcase_17 AC 42 ms
11,136 KB
testcase_18 AC 36 ms
11,008 KB
testcase_19 AC 41 ms
11,264 KB
testcase_20 AC 40 ms
11,136 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 32 ms
10,880 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 35 ms
10,880 KB
testcase_32 WA -
testcase_33 AC 36 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,K=map(int,readline().split())
ans_lst=[[0,2,1,3][i%4] for i in range(N)]
for i in range(N-K,N):
    ans_lst[i]=4
print(*ans_lst)
0