結果

問題 No.1665 quotient replace
ユーザー gmm_teagmm_tea
提出日時 2021-09-03 22:36:49
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 354 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 89,344 KB
最終ジャッジ日時 2024-12-15 15:21:14
合計ジャッジ時間 122,625 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
18,048 KB
testcase_01 AC 107 ms
25,344 KB
testcase_02 AC 107 ms
17,664 KB
testcase_03 AC 1,986 ms
25,088 KB
testcase_04 AC 2,520 ms
18,048 KB
testcase_05 AC 752 ms
25,344 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 106 ms
17,664 KB
testcase_19 AC 121 ms
25,216 KB
testcase_20 AC 106 ms
17,792 KB
testcase_21 AC 107 ms
25,600 KB
testcase_22 AC 132 ms
17,536 KB
testcase_23 AC 146 ms
27,392 KB
testcase_24 AC 134 ms
17,920 KB
testcase_25 AC 106 ms
29,952 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 105 ms
12,416 KB
testcase_43 AC 105 ms
60,800 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==2
    if aa%i==0
      aa/=i
      b+=1
    else
      i+=1
    end
  end
  while aa>1||i<=a2
    if aa%i==0
      aa/=i
      b+=1
    else
      i+=2
    end
  end
  x^=b
end
if x==0
  puts "black"
else
  puts "white"
end
0