結果

問題 No.893 お客様を誘導せよ
ユーザー alexara1123alexara1123
提出日時 2019-09-27 21:55:05
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 628 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 89,176 KB
最終ジャッジ日時 2024-09-24 10:29:38
合計ジャッジ時間 2,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import gcd
from datetime import date, timedelta
from heapq import*
import math
from collections import defaultdict, Counter
import sys
from bisect import *
sys.setrecursionlimit(10 ** 7)
MOD = 10 ** 9 + 7


def main():
    n = int(input())
    a = [list(map(int, input().split())) for i in range(n)]
    
    ansl = []
    c = 0
    check  = 0
    while check != n:
        check = 0
        for i in range(n):
            p = a[i][0]
            if p  > c :
                ansl.append(a[i][c+1])
            else:
                check += 1
        c+=1
    print(*ansl)


if __name__ == '__main__':
    main()
0