結果

問題 No.504 ゲーム大会(ランキング)
ユーザー zazaboonzazaboon
提出日時 2017-05-08 15:10:04
言語 Ruby
(3.3.0)
結果
AC  
実行時間 504 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-09-14 17:23:43
合計ジャッジ時間 6,467 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,032 KB
testcase_01 AC 92 ms
12,032 KB
testcase_02 AC 90 ms
12,032 KB
testcase_03 AC 88 ms
12,032 KB
testcase_04 AC 91 ms
12,032 KB
testcase_05 AC 88 ms
12,032 KB
testcase_06 AC 87 ms
12,288 KB
testcase_07 AC 484 ms
12,544 KB
testcase_08 AC 496 ms
12,544 KB
testcase_09 AC 504 ms
12,800 KB
testcase_10 AC 502 ms
12,544 KB
testcase_11 AC 489 ms
12,544 KB
testcase_12 AC 480 ms
12,672 KB
testcase_13 AC 482 ms
12,544 KB
testcase_14 AC 491 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# Here your code !
n = gets.chomp.to_i
me = gets.chomp.to_i
c = 1
p 1
(n-1).times do
    d = gets.chomp.to_i
    c+=1 if(d > me)
    p c
end
0