結果
問題 | No.750 Frac #1 |
ユーザー |
|
提出日時 | 2018-12-03 21:19:29 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 1,000 ms |
コード長 | 214 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-04 17:47:41 |
合計ジャッジ時間 | 2,285 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
from operator import truediv from functools import reduce [print(*j[1:], end="\n") for j in sorted([[reduce(truediv, l)] + l for l in [list(map(int, input().split())) for _ in range(int(input()))]], reverse=True)]