結果

問題 No.1665 quotient replace
ユーザー gmm_teagmm_tea
提出日時 2021-09-03 22:35:29
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 263 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 92,616 KB
最終ジャッジ日時 2024-12-15 15:15:22
合計ジャッジ時間 120,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
19,492 KB
testcase_01 AC 89 ms
25,088 KB
testcase_02 AC 90 ms
19,620 KB
testcase_03 AC 1,815 ms
25,472 KB
testcase_04 AC 2,370 ms
19,364 KB
testcase_05 AC 675 ms
25,600 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 97 ms
18,048 KB
testcase_19 AC 105 ms
25,216 KB
testcase_20 AC 90 ms
17,792 KB
testcase_21 AC 93 ms
25,344 KB
testcase_22 AC 108 ms
18,048 KB
testcase_23 AC 134 ms
27,392 KB
testcase_24 AC 112 ms
18,048 KB
testcase_25 AC 91 ms
29,696 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
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 89 ms
12,288 KB
testcase_43 AC 90 ms
60,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "prime"
gets
a=gets.split.map(&:to_i)
x=0
a.each do |aa|
  next if aa==1
  a2=(aa**0.5).ceil
  i=2
  b=0
  while aa>1||i<=a2
    if aa%i==0
      aa/=i
      b+=1
    else
      i+=1
    end
  end
  x^=b
end
if x==0
  puts "black"
else
  puts "white"
end
0