結果

問題 No.1831 Parasol
ユーザー tnodinotnodino
提出日時 2022-02-04 22:31:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-11 12:07:11
合計ジャッジ時間 3,208 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 209 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 201 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 183 ms
10,752 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 140 ms
10,880 KB
testcase_11 AC 194 ms
10,880 KB
testcase_12 AC 92 ms
10,752 KB
testcase_13 AC 185 ms
10,880 KB
testcase_14 AC 39 ms
10,752 KB
testcase_15 AC 55 ms
10,880 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 46 ms
10,752 KB
testcase_19 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = 2 * N - 1
L = [i for i in range(1,M+1)]
print(M)
K = [i for i in range(M,M-N,-1)]
cnt = 0
for c in range(M):
    print(*K)
    if c == M - 1:
        break
    for i in range(N):
        L[K[i]-1] -= 1
    P = list(K)
    for i in range(N):
        while L[P[i]-1] == 0:
            P[i] -= 1
        if i < N - 1 and P[i+1] == P[i]:
            P[i+1] = P[i] - 1
    if K == P:
        cnt += 1
        if cnt == 2:
            P[-1] -= 1
            while L[P[-1]-1] == 0:
                P[-1] -= 1
            cnt = 0
    else:
        cnt = 0
    K = list(P)
0