結果

問題 No.504 ゲーム大会(ランキング)
ユーザー deathiroshideathiroshi
提出日時 2017-06-21 16:11:37
言語 PHP
(8.3.4)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 30,960 KB
実行使用メモリ 31,300 KB
最終ジャッジ日時 2024-10-02 10:51:25
合計ジャッジ時間 3,291 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,868 KB
testcase_01 AC 40 ms
30,972 KB
testcase_02 AC 40 ms
30,876 KB
testcase_03 AC 43 ms
30,988 KB
testcase_04 AC 39 ms
30,824 KB
testcase_05 AC 39 ms
31,256 KB
testcase_06 AC 40 ms
31,108 KB
testcase_07 AC 201 ms
30,944 KB
testcase_08 AC 197 ms
31,180 KB
testcase_09 AC 205 ms
30,804 KB
testcase_10 AC 204 ms
31,300 KB
testcase_11 AC 198 ms
30,652 KB
testcase_12 AC 199 ms
31,060 KB
testcase_13 AC 197 ms
30,988 KB
testcase_14 AC 201 ms
30,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $N = trim(fgets(STDIN));
    // K君のスコア
    $kScore = trim(fgets(STDIN));
    $rank = 1;
    printf("$rank\n");
    for($i = 1; $i < $N; $i++) {
    	$tmp = trim(fgets(STDIN));
    	if($kScore < $tmp) $rank++;
    	printf("$rank\n");
    }
    
    
0