結果

問題 No.478 一般門松列列
ユーザー 330Xs330Xs
提出日時 2022-01-30 17:04:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 67,840 KB
最終ジャッジ日時 2024-06-11 08:19:30
合計ジャッジ時間 3,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
51,840 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 44 ms
52,096 KB
testcase_03 AC 46 ms
51,456 KB
testcase_04 AC 45 ms
52,096 KB
testcase_05 AC 44 ms
51,712 KB
testcase_06 AC 45 ms
51,456 KB
testcase_07 AC 45 ms
51,712 KB
testcase_08 AC 46 ms
51,584 KB
testcase_09 AC 47 ms
51,584 KB
testcase_10 AC 45 ms
51,840 KB
testcase_11 AC 70 ms
67,072 KB
testcase_12 AC 66 ms
65,408 KB
testcase_13 AC 68 ms
67,840 KB
testcase_14 AC 67 ms
67,584 KB
testcase_15 AC 69 ms
67,328 KB
testcase_16 AC 62 ms
63,360 KB
testcase_17 AC 69 ms
67,200 KB
testcase_18 AC 62 ms
65,152 KB
testcase_19 AC 69 ms
67,200 KB
testcase_20 AC 63 ms
66,688 KB
testcase_21 AC 62 ms
65,792 KB
testcase_22 AC 61 ms
64,256 KB
testcase_23 AC 63 ms
63,872 KB
testcase_24 AC 65 ms
65,280 KB
testcase_25 AC 67 ms
66,560 KB
testcase_26 AC 61 ms
62,720 KB
testcase_27 AC 64 ms
62,592 KB
testcase_28 AC 57 ms
61,312 KB
testcase_29 AC 57 ms
61,568 KB
testcase_30 AC 64 ms
64,512 KB
testcase_31 AC 63 ms
64,128 KB
testcase_32 AC 60 ms
63,360 KB
testcase_33 AC 60 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
ans = []
if(n - k > 2):
    for i in range((n-1)//2+1):
        ans.append(100000 + i)
        ans.append(100000 + n - i)
    
    if((n - k) % 2 == 0):
        for j in range(k):
            ans[n-k+j] = 200000 + j
    else:
        for j in range(k):
            ans[n-k+j] = 90000 - j
    print(*ans[:n])
    
else:
    ans = [i for i in range(n)]
    print(*ans)
0