結果

問題 No.893 お客様を誘導せよ
ユーザー rlangevinrlangevin
提出日時 2024-08-15 12:12:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 89,196 KB
最終ジャッジ日時 2024-08-15 12:12:21
合計ジャッジ時間 2,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,120 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 58 ms
71,424 KB
testcase_03 AC 85 ms
80,640 KB
testcase_04 AC 81 ms
78,976 KB
testcase_05 AC 78 ms
80,512 KB
testcase_06 AC 70 ms
79,104 KB
testcase_07 AC 37 ms
53,760 KB
testcase_08 AC 97 ms
89,196 KB
testcase_09 AC 58 ms
68,096 KB
testcase_10 AC 38 ms
53,376 KB
testcase_11 AC 55 ms
65,408 KB
testcase_12 AC 63 ms
71,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
A = []
ans = []
for i in range(N):
    A.append(deque(map(int, input().split())))
    A[i].popleft()
    
for _ in range(105):
    for i in range(N):
        if A[i]:
            ans.append(A[i].popleft())
            
print(*ans)
0