結果
問題 | No.706 多眼生物の調査 |
ユーザー | mizo |
提出日時 | 2018-06-29 23:16:47 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 127 bytes |
コンパイル時間 | 38 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-07-01 00:14:16 |
合計ジャッジ時間 | 1,345 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
12,160 KB |
testcase_01 | AC | 79 ms
12,160 KB |
testcase_02 | AC | 88 ms
12,288 KB |
testcase_03 | AC | 80 ms
12,160 KB |
testcase_04 | AC | 84 ms
12,160 KB |
testcase_05 | AC | 112 ms
12,416 KB |
testcase_06 | WA | - |
testcase_07 | AC | 82 ms
12,288 KB |
コンパイルメッセージ
Syntax OK
ソースコード
n = gets.to_i num = [] n.times do |i| num[i] = gets.count("^") end print num.sort{|x,y| num.count(y) <=> num.count(x) }[0]