結果

問題 No.537 ユーザーID
ユーザー wonda_t_coffeewonda_t_coffee
提出日時 2020-02-04 09:30:43
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-09-19 20:29:11
合計ジャッジ時間 5,319 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,416 KB
testcase_01 AC 88 ms
12,416 KB
testcase_02 AC 80 ms
12,416 KB
testcase_03 AC 81 ms
12,544 KB
testcase_04 AC 78 ms
12,416 KB
testcase_05 AC 82 ms
12,544 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 83 ms
12,544 KB
testcase_09 AC 84 ms
12,160 KB
testcase_10 AC 78 ms
12,416 KB
testcase_11 AC 79 ms
12,544 KB
testcase_12 AC 78 ms
12,416 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 79 ms
12,544 KB
testcase_16 AC 78 ms
12,544 KB
testcase_17 WA -
testcase_18 AC 167 ms
20,480 KB
testcase_19 AC 185 ms
22,400 KB
testcase_20 AC 181 ms
21,248 KB
testcase_21 AC 143 ms
18,816 KB
testcase_22 AC 192 ms
21,888 KB
testcase_23 AC 146 ms
18,816 KB
testcase_24 AC 101 ms
14,592 KB
testcase_25 AC 191 ms
22,016 KB
testcase_26 AC 195 ms
22,400 KB
testcase_27 AC 169 ms
20,736 KB
testcase_28 AC 135 ms
17,536 KB
testcase_29 AC 211 ms
22,656 KB
testcase_30 AC 186 ms
21,248 KB
testcase_31 WA -
testcase_32 AC 122 ms
17,280 KB
testcase_33 WA -
testcase_34 AC 161 ms
20,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.chomp.to_i

if n == 1
  puts 1
  exit
end

ans = 0

lim = (n**0.5).to_i
(1..lim).to_a.each do |d|
  next if n % d > 0

  e = n / d
  if d.to_s + e.to_s == e.to_s + d.to_s
    ans += 1
  else
    ans += 2
  end
end

puts ans
0