結果
問題 | No.966 引き算をして門松列(その1) |
ユーザー | tamaron |
提出日時 | 2020-01-13 21:35:07 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 896 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,672 KB |
最終ジャッジ日時 | 2024-06-02 05:36:25 |
合計ジャッジ時間 | 1,388 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 78 ms
12,160 KB |
testcase_01 | AC | 80 ms
12,288 KB |
testcase_02 | AC | 80 ms
12,288 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 109 ms
12,288 KB |
コンパイルメッセージ
Main.rb:5: warning: ambiguous first argument; put parentheses or a space even after `-' operator Main.rb:11: warning: ambiguous first argument; put parentheses or a space even after `-' operator Main.rb:38: warning: ambiguous first argument; put parentheses or a space even after `-' operator Syntax OK
ソースコード
T=gets.to_i T.times do |i| a,b,c=gets.split.map(&:to_i) if [a,b,c].max<=2 || (a==1 && a==b) || (b==1 && b==c) || (c==1 && c==a) puts -1 next end a,c=c,a if c<a if a==b && b==c if a<=2 puts -1 elsif 3<=a puts 3 end elsif a==b && b<c puts 1 elsif a<b && b==c if a+1==b puts 2 else puts 1 end elsif a==c && c<b if a+1==b puts 2 else puts 1 end elsif b<a && a==c if b+1==a puts 2 else puts 1 end elsif a<b && b<c if a==1 if b==2 puts -1 else puts c-b+1 end else puts [b-a+1,c-b+1].min end else puts 0 end end