結果

問題 No.1831 Parasol
ユーザー KuonAyanoKuonAyano
提出日時 2022-02-04 23:13:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 930 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-06-11 12:46:23
合計ジャッジ時間 4,187 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 WA -
testcase_02 AC 27 ms
11,008 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 28 ms
11,008 KB
testcase_06 AC 27 ms
11,008 KB
testcase_07 WA -
testcase_08 AC 28 ms
11,008 KB
testcase_09 AC 26 ms
11,008 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 28 ms
11,136 KB
testcase_17 AC 28 ms
11,008 KB
testcase_18 WA -
testcase_19 AC 27 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

print(2*N-1)

p = [[str(2*N-1)] for i in range (0, 2*N-1)]

if N == 1:
    print(1)
    exit()
if N == 2:
    print('3 2')
    print('3 2')
    print('3 1')
    exit()

import collections as col

d = col.deque()

for i in range (0, 2*N-2):
    q = 2*N-2-i
    for j in range (0, q):
        d.append(str(q))

for i in range (0, (N-2)*(2*N-1)):
    p[i%(2*N-1)].append(d.popleft())

ikkai = set()
mate = set()

import copy

for i in range (0, 2*N-1):
    c = 0
    s= "".join(p[i])
    while c == 0:
        q = d.popleft()
        u = str(q)
        s+=u
        if s not in mate:
            if s not in ikkai:
                ikkai.add(s)
            else:
                mate.add(s)
            c = 1
            p[i].append(q)
        else:
            s = s[:-1]
            d.append(q)

for i in range (0, len(p)):
    v = []
    for j in range (0, len(p[i])):
        v.append(int(p[i][j]))
    print(*v)
0