結果

問題 No.1665 quotient replace
ユーザー gmm_teagmm_tea
提出日時 2021-09-03 22:27:25
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 214 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 46,208 KB
最終ジャッジ日時 2024-05-09 05:01:54
合計ジャッジ時間 8,303 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
17,792 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 93 ms
12,416 KB
testcase_03 AC 107 ms
12,416 KB
testcase_04 AC 117 ms
12,672 KB
testcase_05 AC 99 ms
12,672 KB
testcase_06 AC 245 ms
13,312 KB
testcase_07 AC 119 ms
12,672 KB
testcase_08 AC 187 ms
12,800 KB
testcase_09 AC 697 ms
15,104 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

require "prime"
n=gets.to_i
a=gets.split.map(&:to_i)
x=0
a.each do |aa|
  next if aa==1
  b=0
  Prime.prime_division(aa).each do |aaa,bbb|
    b+=bbb
  end
  x^=b
end
if x==0
  puts "black"
else
  puts "white"
end
0