結果

問題 No.750 Frac #1
ユーザー ayaaya
提出日時 2019-08-06 12:53:30
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 349 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 31,260 KB
実行使用メモリ 31,532 KB
最終ジャッジ日時 2024-07-18 13:53:45
合計ジャッジ時間 2,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,156 KB
testcase_01 AC 42 ms
31,236 KB
testcase_02 AC 39 ms
31,188 KB
testcase_03 AC 39 ms
31,260 KB
testcase_04 AC 37 ms
31,260 KB
testcase_05 AC 38 ms
31,168 KB
testcase_06 AC 39 ms
31,164 KB
testcase_07 AC 38 ms
31,184 KB
testcase_08 AC 37 ms
31,188 KB
testcase_09 AC 39 ms
31,396 KB
testcase_10 AC 40 ms
31,284 KB
testcase_11 AC 39 ms
31,140 KB
testcase_12 AC 42 ms
31,288 KB
testcase_13 AC 39 ms
31,276 KB
testcase_14 AC 38 ms
30,988 KB
testcase_15 AC 37 ms
31,532 KB
testcase_16 AC 36 ms
31,428 KB
testcase_17 AC 38 ms
31,504 KB
testcase_18 AC 38 ms
31,176 KB
testcase_19 AC 38 ms
31,228 KB
testcase_20 AC 39 ms
31,180 KB
testcase_21 AC 38 ms
31,280 KB
testcase_22 AC 39 ms
31,004 KB
testcase_23 AC 38 ms
31,136 KB
testcase_24 AC 38 ms
31,304 KB
testcase_25 AC 39 ms
31,260 KB
testcase_26 AC 37 ms
31,100 KB
testcase_27 AC 39 ms
31,440 KB
testcase_28 AC 37 ms
31,416 KB
testcase_29 AC 38 ms
31,100 KB
testcase_30 AC 40 ms
31,160 KB
testcase_31 AC 39 ms
31,384 KB
testcase_32 AC 38 ms
31,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$num=(int)trim(fgets(STDIN));
$inputData=array();
$calData=array();
for($i=0;$i<$num;$i++){
  $input=trim(fgets(STDIN));
  array_push($inputData,$input);
  $inputValue=explode(" ",$input);
  array_push($calData,(float)$inputValue[0]/(float)$inputValue[1]);
}
arsort($calData);
foreach($calData as $key=>$value){
  echo $inputData[$key]."\n";
}
0