結果

問題 No.1185 完全な3の倍数
ユーザー simansiman
提出日時 2020-08-23 03:34:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,189 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 22,376 KB
最終ジャッジ日時 2024-05-03 10:41:10
合計ジャッジ時間 13,656 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 419 ms
22,144 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 412 ms
22,144 KB
testcase_04 AC 417 ms
22,144 KB
testcase_05 AC 412 ms
22,016 KB
testcase_06 AC 412 ms
22,144 KB
testcase_07 AC 412 ms
22,272 KB
testcase_08 AC 1,189 ms
22,376 KB
testcase_09 AC 85 ms
12,160 KB
testcase_10 AC 85 ms
12,288 KB
testcase_11 AC 87 ms
12,288 KB
testcase_12 AC 85 ms
12,160 KB
testcase_13 AC 87 ms
12,032 KB
testcase_14 AC 85 ms
12,032 KB
testcase_15 AC 86 ms
12,160 KB
testcase_16 AC 86 ms
12,160 KB
testcase_17 AC 86 ms
12,160 KB
testcase_18 AC 86 ms
12,032 KB
testcase_19 AC 356 ms
15,232 KB
testcase_20 AC 411 ms
22,272 KB
testcase_21 AC 391 ms
19,456 KB
testcase_22 AC 367 ms
17,920 KB
testcase_23 AC 357 ms
14,976 KB
testcase_24 AC 395 ms
22,016 KB
testcase_25 AC 157 ms
12,672 KB
testcase_26 AC 375 ms
19,200 KB
testcase_27 AC 357 ms
15,104 KB
testcase_28 AC 388 ms
22,272 KB
testcase_29 AC 372 ms
18,816 KB
testcase_30 AC 382 ms
19,200 KB
testcase_31 AC 92 ms
12,160 KB
testcase_32 AC 403 ms
22,144 KB
testcase_33 AC 163 ms
14,848 KB
testcase_34 AC 406 ms
22,272 KB
testcase_35 AC 418 ms
22,144 KB
testcase_36 AC 405 ms
22,144 KB
testcase_37 AC 403 ms
22,272 KB
testcase_38 AC 379 ms
19,200 KB
testcase_39 AC 87 ms
12,288 KB
testcase_40 AC 85 ms
12,288 KB
testcase_41 AC 91 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
D = N.to_s.size

def f(n)
  return false if n <= 0
  return false if n % 3 != 0

  digits = n.digits

  return false if digits.size <= 1

  digits.combination(2).all? { |a, b| (a + b) % 3 == 0 }
end

ans = 0

(1..[N, 99].min).each do |n|
  ans += 1 if f(n)
end

$cnt = 0
$checked = Hash.new(false)

def dfs(sum, base, depth)
  return if D < depth

  if depth >= 3 && 100 <= sum && sum <= N && !$checked[sum]
    $checked[sum] = true
    $cnt += 1
  end

  [0, 3, 6, 9].each do |n|
    s = sum + base * n

    dfs(s, base * 10, depth + 1)
  end
end

dfs(0, 1, 0)
puts $cnt + ans
0