結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | gigurururu |
提出日時 | 2015-01-08 23:38:54 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 209 bytes |
コンパイル時間 | 55 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 13,696 KB |
最終ジャッジ日時 | 2024-06-13 03:20:16 |
合計ジャッジ時間 | 1,353 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - n Syntax OK
ソースコード
gets.to_i.times{ n=gets.to_i l=gets.split.map(&:to_i) a=[0,0]+l.group_by{|i|i}.values.map(&:size).sort cnt=0 while a[-3]>0 cnt+=a[-3] (1..3).each{|i|a[-i]-=a[-3]} a.sort! end p cnt }