結果

問題 No.478 一般門松列列
ユーザー rlangevinrlangevin
提出日時 2023-01-13 19:58:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 678 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 66,688 KB
最終ジャッジ日時 2024-06-06 20:47:38
合計ジャッジ時間 3,494 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,372 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 34 ms
52,864 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 34 ms
52,500 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 33 ms
52,224 KB
testcase_10 AC 34 ms
52,864 KB
testcase_11 AC 47 ms
65,920 KB
testcase_12 AC 47 ms
65,940 KB
testcase_13 AC 51 ms
66,688 KB
testcase_14 AC 43 ms
66,560 KB
testcase_15 AC 49 ms
65,920 KB
testcase_16 AC 46 ms
63,360 KB
testcase_17 AC 46 ms
66,432 KB
testcase_18 AC 48 ms
64,896 KB
testcase_19 AC 49 ms
66,176 KB
testcase_20 AC 49 ms
65,408 KB
testcase_21 AC 48 ms
65,280 KB
testcase_22 AC 47 ms
64,000 KB
testcase_23 AC 45 ms
63,488 KB
testcase_24 AC 48 ms
64,384 KB
testcase_25 AC 45 ms
65,792 KB
testcase_26 AC 43 ms
61,952 KB
testcase_27 AC 43 ms
62,336 KB
testcase_28 AC 41 ms
61,440 KB
testcase_29 AC 42 ms
61,952 KB
testcase_30 AC 42 ms
64,384 KB
testcase_31 AC 42 ms
63,744 KB
testcase_32 AC 42 ms
63,104 KB
testcase_33 AC 43 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
L = [1, 3, 2, 4] * (2 * 10 ** 4)
ans = list(range(K))
ans.extend(L[:N - K])
for i in range(K, N):
    ans[i] += K
print(*ans)
0