結果

問題 No.893 お客様を誘導せよ
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-01 17:47:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 86,904 KB
最終ジャッジ日時 2024-06-06 18:45:05
合計ジャッジ時間 1,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 71 ms
70,784 KB
testcase_03 AC 82 ms
80,768 KB
testcase_04 AC 80 ms
80,768 KB
testcase_05 AC 73 ms
80,256 KB
testcase_06 AC 70 ms
78,552 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 89 ms
86,904 KB
testcase_09 AC 57 ms
66,176 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 52 ms
64,128 KB
testcase_12 AC 62 ms
68,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = [0]*n
for i in range(n):
    temp = list(map(int, input().split()))
    if len(temp) == 1:
        A[i] = []
    else:
        a = temp[1:]
        a.reverse()
        A[i] = a

ans = []
while True:
    cnt = 0
    for i in range(n):
        if A[i]:
            ans.append(A[i].pop())
        else:
            cnt += 1
    if cnt == n:
        break
print(*ans)
0