結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 368 ms
22,272 KB
testcase_01 AC 78 ms
12,288 KB
testcase_02 AC 80 ms
12,160 KB
testcase_03 AC 363 ms
22,144 KB
testcase_04 AC 366 ms
22,272 KB
testcase_05 AC 364 ms
22,144 KB
testcase_06 AC 357 ms
22,272 KB
testcase_07 AC 364 ms
22,144 KB
testcase_08 AC 1,065 ms
22,372 KB
testcase_09 AC 79 ms
12,160 KB
testcase_10 AC 78 ms
12,160 KB
testcase_11 AC 75 ms
12,160 KB
testcase_12 AC 75 ms
12,160 KB
testcase_13 AC 76 ms
12,160 KB
testcase_14 AC 75 ms
12,160 KB
testcase_15 AC 77 ms
12,160 KB
testcase_16 AC 77 ms
12,160 KB
testcase_17 AC 78 ms
12,160 KB
testcase_18 AC 77 ms
12,160 KB
testcase_19 AC 322 ms
15,232 KB
testcase_20 AC 363 ms
22,272 KB
testcase_21 AC 346 ms
19,328 KB
testcase_22 AC 333 ms
18,176 KB
testcase_23 AC 325 ms
15,232 KB
testcase_24 AC 359 ms
22,272 KB
testcase_25 AC 143 ms
12,800 KB
testcase_26 AC 343 ms
19,456 KB
testcase_27 AC 319 ms
15,232 KB
testcase_28 AC 351 ms
22,400 KB
testcase_29 AC 338 ms
19,072 KB
testcase_30 AC 342 ms
19,200 KB
testcase_31 AC 86 ms
12,160 KB
testcase_32 AC 370 ms
22,400 KB
testcase_33 AC 148 ms
14,848 KB
testcase_34 AC 360 ms
22,272 KB
testcase_35 AC 368 ms
22,272 KB
testcase_36 AC 362 ms
22,272 KB
testcase_37 AC 360 ms
22,272 KB
testcase_38 AC 343 ms
19,456 KB
testcase_39 AC 74 ms
12,288 KB
testcase_40 AC 75 ms
12,288 KB
testcase_41 AC 80 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