結果

問題 No.1665 quotient replace
ユーザー gmm_teagmm_tea
提出日時 2021-09-03 22:27:25
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 214 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 109,696 KB
最終ジャッジ日時 2024-12-15 14:40:45
合計ジャッジ時間 91,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
19,104 KB
testcase_01 AC 98 ms
52,992 KB
testcase_02 AC 99 ms
19,108 KB
testcase_03 AC 115 ms
98,688 KB
testcase_04 AC 116 ms
19,492 KB
testcase_05 AC 104 ms
107,520 KB
testcase_06 AC 265 ms
19,876 KB
testcase_07 AC 128 ms
107,392 KB
testcase_08 AC 194 ms
19,616 KB
testcase_09 AC 729 ms
109,696 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,815 ms
27,040 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 101 ms
19,232 KB
testcase_19 AC 99 ms
100,224 KB
testcase_20 AC 100 ms
19,236 KB
testcase_21 AC 99 ms
95,104 KB
testcase_22 AC 99 ms
19,104 KB
testcase_23 AC 100 ms
51,072 KB
testcase_24 AC 98 ms
19,232 KB
testcase_25 AC 98 ms
72,832 KB
testcase_26 AC 243 ms
19,492 KB
testcase_27 AC 569 ms
71,808 KB
testcase_28 AC 2,302 ms
21,924 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 100 ms
12,288 KB
testcase_43 AC 99 ms
66,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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