結果
問題 | No.570 3人兄弟(その1) |
ユーザー | Lo_OT |
提出日時 | 2017-12-31 12:18:04 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 297 bytes |
コンパイル時間 | 66 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-12-21 15:13:23 |
合計ジャッジ時間 | 1,373 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 102 ms
12,032 KB |
testcase_01 | AC | 105 ms
12,032 KB |
testcase_02 | AC | 96 ms
12,032 KB |
testcase_03 | WA | - |
testcase_04 | AC | 96 ms
12,288 KB |
testcase_05 | WA | - |
testcase_06 | AC | 100 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
num = Array.new num[0] = gets.to_i num[1] = gets.to_i num[2] = gets.to_i ar = [ ["A", num[0]], ["B", num[1]], ["C", num[2]], ] num = num.sort.reverse 3.times do |i| 3.times do |j| if ar[i][1] == num[j] puts ar[j][0] break end end end