結果

問題 No.1823 Tricolor Dango
ユーザー maimai
提出日時 2022-01-28 21:30:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-06-09 14:21:29
合計ジャッジ時間 3,934 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 132 ms
12,672 KB
testcase_02 AC 135 ms
12,544 KB
testcase_03 AC 128 ms
12,672 KB
testcase_04 AC 106 ms
13,568 KB
testcase_05 AC 109 ms
13,440 KB
testcase_06 AC 106 ms
13,312 KB
testcase_07 AC 101 ms
12,544 KB
testcase_08 AC 103 ms
12,800 KB
testcase_09 AC 108 ms
13,056 KB
testcase_10 AC 106 ms
12,800 KB
testcase_11 AC 107 ms
12,800 KB
testcase_12 AC 104 ms
12,800 KB
testcase_13 AC 111 ms
13,568 KB
testcase_14 AC 107 ms
15,488 KB
testcase_15 AC 103 ms
14,080 KB
testcase_16 AC 89 ms
14,592 KB
testcase_17 AC 89 ms
14,592 KB
testcase_18 AC 109 ms
18,048 KB
testcase_19 AC 145 ms
26,112 KB
testcase_20 AC 112 ms
17,920 KB
testcase_21 AC 119 ms
13,440 KB
testcase_22 AC 138 ms
12,800 KB
testcase_23 AC 117 ms
13,312 KB
testcase_24 AC 118 ms
13,312 KB
testcase_25 AC 128 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

def lscan; gets.split.map(&:to_i); end

gets.to_i.times do
  n = gets.to_i
  aa = lscan
  sum = aa.reduce(:+)
  h = sum/3
  if h*3 != sum
    puts 'No'
    next
  end
  if aa.max <= h
    puts 'Yes'
  else
    puts 'No'
  end
end
0