結果

問題 No.750 Frac #1
ユーザー matriematrie
提出日時 2020-11-29 09:33:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 529 ms / 1,000 ms
コード長 186 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,544 KB
最終ジャッジ日時 2024-09-13 01:53:15
合計ジャッジ時間 20,281 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 518 ms
44,304 KB
testcase_01 AC 521 ms
44,304 KB
testcase_02 AC 529 ms
44,440 KB
testcase_03 AC 518 ms
44,312 KB
testcase_04 AC 520 ms
44,440 KB
testcase_05 AC 522 ms
44,308 KB
testcase_06 AC 518 ms
44,360 KB
testcase_07 AC 526 ms
44,292 KB
testcase_08 AC 522 ms
44,056 KB
testcase_09 AC 521 ms
44,544 KB
testcase_10 AC 518 ms
44,308 KB
testcase_11 AC 521 ms
44,052 KB
testcase_12 AC 519 ms
44,304 KB
testcase_13 AC 524 ms
43,912 KB
testcase_14 AC 518 ms
44,056 KB
testcase_15 AC 518 ms
44,428 KB
testcase_16 AC 518 ms
44,304 KB
testcase_17 AC 515 ms
44,304 KB
testcase_18 AC 514 ms
44,048 KB
testcase_19 AC 519 ms
44,092 KB
testcase_20 AC 521 ms
44,048 KB
testcase_21 AC 519 ms
44,304 KB
testcase_22 AC 517 ms
44,312 KB
testcase_23 AC 515 ms
44,308 KB
testcase_24 AC 521 ms
44,436 KB
testcase_25 AC 517 ms
44,420 KB
testcase_26 AC 516 ms
44,428 KB
testcase_27 AC 515 ms
44,312 KB
testcase_28 AC 515 ms
44,164 KB
testcase_29 AC 515 ms
44,312 KB
testcase_30 AC 525 ms
43,936 KB
testcase_31 AC 515 ms
44,436 KB
testcase_32 AC 522 ms
44,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n = int(input())
a = [0]*n; b = [0]*n; c = [0]*n
for i in range(n):
	a[i],b[i]=map(int,input().split())
	c[i]=a[i]/b[i]
for i in np.argsort(c)[::-1]:
	print(a[i],b[i])
0