結果
問題 | No.967 引き算をして門松列(その2) |
ユーザー | tamaron |
提出日時 | 2020-01-13 21:58:31 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,093 bytes |
コンパイル時間 | 38 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-06-02 06:26:21 |
合計ジャッジ時間 | 1,809 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 75 ms
12,032 KB |
testcase_01 | AC | 74 ms
12,160 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
コンパイルメッセージ
Main.rb:5: warning: ambiguous first argument; put parentheses or a space even after `-' operator Main.rb:14: warning: ambiguous first argument; put parentheses or a space even after `-' operator Main.rb:45: 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,x,y,z=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 x,z=z,x if c<a a,c=c,a if c<a u=[x,z].min v=[x,z].max if a==b && b==c if a<=2 puts -1 elsif 3<=a puts 2*u+v end elsif a==b && b<c if 3<=b puts [2*x+(c-b+1)*z,y].min else puts y end elsif a<b && b==c if a+1==b puts [2*y,2*z].min else if a==1 puts z else puts [z,(b-a+1)*y] end end elsif a==c && c<b puts u elsif b<a && a==c if b+1==a puts 2*u else puts u end elsif a<b && b<c if a==1 if b==2 puts -1 else puts (c-b+1)*z end else puts [(b-a+1)*y,(c-b+1)*z].min end else puts 0 end end