結果
問題 | No.516 赤と青の風船 |
ユーザー | mesh1nek0x0 |
提出日時 | 2018-08-02 21:29:34 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 162 bytes |
コンパイル時間 | 354 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-09-19 17:13:39 |
合計ジャッジ時間 | 1,363 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
12,288 KB |
testcase_01 | AC | 74 ms
12,032 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 77 ms
12,032 KB |
testcase_05 | WA | - |
testcase_06 | AC | 78 ms
12,288 KB |
testcase_07 | AC | 74 ms
12,032 KB |
コンパイルメッセージ
Syntax OK
ソースコード
#!/bin/ruby S1 = gets.chomp S2 = gets.chomp S3 = gets.chomp puts [S1, S2, S3].group_by { |color| color }.sort {|attr1, attr2| attr1.size <=> attr2.size }.max[0]