結果

問題 No.8042 本棚
ユーザー uwi
提出日時 2019-04-02 17:27:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-28 01:55:49
合計ジャッジ時間 1,758 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

ds = []
for i in range(n):
    line = input().strip()
    ds.append((line.split()[0], "itini sanyon".index(line.split()[1]), line))
ds.sort()
for line in ds:
    print(line[2])
0