結果

問題 No.1185 完全な3の倍数
ユーザー kozykozy
提出日時 2020-08-22 14:44:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 76,524 KB
最終ジャッジ日時 2024-11-24 09:31:30
合計ジャッジ時間 8,663 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
76,200 KB
testcase_01 AC 32 ms
53,204 KB
testcase_02 AC 214 ms
76,128 KB
testcase_03 AC 217 ms
76,048 KB
testcase_04 AC 214 ms
76,112 KB
testcase_05 AC 229 ms
76,196 KB
testcase_06 AC 224 ms
76,196 KB
testcase_07 AC 224 ms
76,176 KB
testcase_08 AC 211 ms
76,524 KB
testcase_09 AC 32 ms
53,068 KB
testcase_10 AC 33 ms
53,600 KB
testcase_11 AC 31 ms
52,960 KB
testcase_12 AC 32 ms
53,124 KB
testcase_13 AC 32 ms
53,328 KB
testcase_14 AC 32 ms
52,636 KB
testcase_15 AC 31 ms
54,400 KB
testcase_16 AC 31 ms
53,940 KB
testcase_17 AC 32 ms
53,008 KB
testcase_18 AC 31 ms
54,204 KB
testcase_19 AC 232 ms
76,044 KB
testcase_20 AC 216 ms
75,924 KB
testcase_21 AC 222 ms
75,924 KB
testcase_22 AC 227 ms
76,252 KB
testcase_23 AC 216 ms
76,184 KB
testcase_24 AC 233 ms
76,500 KB
testcase_25 AC 215 ms
76,500 KB
testcase_26 AC 229 ms
76,096 KB
testcase_27 AC 233 ms
76,232 KB
testcase_28 AC 218 ms
76,228 KB
testcase_29 AC 216 ms
76,240 KB
testcase_30 AC 223 ms
76,348 KB
testcase_31 AC 218 ms
76,352 KB
testcase_32 AC 234 ms
76,456 KB
testcase_33 AC 236 ms
76,096 KB
testcase_34 AC 218 ms
76,052 KB
testcase_35 AC 217 ms
76,256 KB
testcase_36 AC 218 ms
75,984 KB
testcase_37 AC 218 ms
76,340 KB
testcase_38 AC 219 ms
76,044 KB
testcase_39 AC 32 ms
52,188 KB
testcase_40 AC 221 ms
76,116 KB
testcase_41 AC 233 ms
76,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
sys.setrecursionlimit(10 ** 7)
def input() : return sys.stdin.readline().strip()
def INT()   : return int(input())
def MAP()   : return map(int,input().split())
def LIST()  : return list(MAP())
def NIJIGEN(H): return [list(input()) for i in range(H)]
def a(X):
    X_dumy = X
    out = ''
    while X_dumy>0:
        out = str(X_dumy%4)+out
        X_dumy = int(X_dumy/4)
    return out
N=int(input())
ans=0
if N<=10:
  print(0)
  exit()
if N<=99:
    print((N//3)-3)
    exit()
for i in range(16,262144):
  s=list(a(i))
  s="".join([str(3*int(i)) for i in s])
  s=int(s)
  if s<=N:
    ans+=1
print(ans+30)
0