結果
問題 | No.504 ゲーム大会(ランキング) |
ユーザー | n120aosssssssss |
提出日時 | 2017-05-14 16:51:56 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 353 bytes |
コンパイル時間 | 3,319 ms |
コンパイル使用メモリ | 30,576 KB |
実行使用メモリ | 36,472 KB |
最終ジャッジ日時 | 2024-09-16 05:50:26 |
合計ジャッジ時間 | 4,988 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $N = trim(fgets(STDIN)); $scores = array(); for($i = 1; $i <= $N; $i++) { $scores[] = trim(fgets(STDIN)); if($i == 1) { $kScore = $scores[0]; } rsort($scores); for($j = 0; $j < count($scores); $j++) { if($kScore == $scores[$j]) { printf("($j+1)\n"); break; } } }