結果

問題 No.1823 Tricolor Dango
ユーザー simansiman
提出日時 2022-01-30 10:06:55
言語 Ruby
(3.3.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,984 KB
最終ジャッジ日時 2024-06-11 08:10:13
合計ジャッジ時間 4,916 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,288 KB
testcase_01 AC 122 ms
12,544 KB
testcase_02 AC 129 ms
12,800 KB
testcase_03 AC 123 ms
12,800 KB
testcase_04 AC 107 ms
13,312 KB
testcase_05 AC 109 ms
13,312 KB
testcase_06 AC 103 ms
13,184 KB
testcase_07 AC 99 ms
12,928 KB
testcase_08 AC 96 ms
12,800 KB
testcase_09 AC 99 ms
12,928 KB
testcase_10 AC 99 ms
12,544 KB
testcase_11 AC 99 ms
12,544 KB
testcase_12 AC 95 ms
12,928 KB
testcase_13 AC 102 ms
13,568 KB
testcase_14 AC 105 ms
15,488 KB
testcase_15 AC 107 ms
14,336 KB
testcase_16 AC 86 ms
14,592 KB
testcase_17 AC 87 ms
14,464 KB
testcase_18 AC 105 ms
18,304 KB
testcase_19 AC 139 ms
25,984 KB
testcase_20 AC 106 ms
17,792 KB
testcase_21 AC 117 ms
13,440 KB
testcase_22 AC 125 ms
12,672 KB
testcase_23 AC 106 ms
13,184 KB
testcase_24 AC 115 ms
13,568 KB
testcase_25 AC 121 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

T = gets.to_i

T.times do
  n = gets.to_i
  a = gets.split.map(&:to_i)
  s = a.sum

  if s % 3 != 0
    puts 'No'
  else
    v = s / 3
    m = a.max

    if m <= v
      puts 'Yes'
    else
      puts 'No'
    end
  end
end
0