結果
| 問題 | No.893 お客様を誘導せよ |
| コンテスト | |
| ユーザー |
r_ishida
|
| 提出日時 | 2020-02-05 01:24:27 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 149 ms / 2,000 ms |
| + 168µs | |
| コード長 | 287 bytes |
| 記録 | |
| コンパイル時間 | 293 ms |
| コンパイル使用メモリ | 21,340 KB |
| 実行使用メモリ | 24,108 KB |
| 最終ジャッジ日時 | 2026-09-01 12:45:43 |
| 合計ジャッジ時間 | 3,115 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 11 |
ソースコード
n = int(input())
a = []
p = []
for i in range(n):
a.append(list(map(int,input().split())))
p.append(a[i][0])
ans = []
for i in range(max(p)):
for j in range(n):
if len(a[j]) != 1:
ans.append(a[j][1])
a[j].pop(1)
print(' '.join(map(str, ans)))
r_ishida