結果
問題 | No.893 お客様を誘導せよ |
ユーザー | はむ吉🐹 |
提出日時 | 2019-09-27 21:55:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 130 ms / 2,000 ms |
コード長 | 603 bytes |
コンパイル時間 | 222 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-09-24 10:26:00 |
合計ジャッジ時間 | 1,589 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 29 ms
10,880 KB |
testcase_02 | AC | 42 ms
11,648 KB |
testcase_03 | AC | 81 ms
14,464 KB |
testcase_04 | AC | 81 ms
14,464 KB |
testcase_05 | AC | 74 ms
14,208 KB |
testcase_06 | AC | 60 ms
13,184 KB |
testcase_07 | AC | 30 ms
10,752 KB |
testcase_08 | AC | 130 ms
17,792 KB |
testcase_09 | AC | 35 ms
11,520 KB |
testcase_10 | AC | 29 ms
10,752 KB |
testcase_11 | AC | 38 ms
11,520 KB |
testcase_12 | AC | 39 ms
11,776 KB |
ソースコード
import collections def solve(num_rows, customer_rows): customer_queues = [collections.deque(row) for row in customer_rows] res_row = [] while any(customer_queues): for i in range(num_rows): if customer_queues[i]: res_row.append(customer_queues[i].popleft()) return res_row def main(): n = int(input()) customer_rows = [] for _ in range(n): args = [int(z) for z in input().split()] row = args[1:] customer_rows.append(row) res = solve(n, customer_rows) print(*res) if __name__ == "__main__": main()