結果

問題 No.294 SuperFizzBuzz
ユーザー yuppe19 😺yuppe19 😺
提出日時 2018-11-11 17:35:00
言語 Python2
(2.7.18)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 1,439 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-05-08 01:12:35
合計ジャッジ時間 1,644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
6,272 KB
testcase_01 AC 51 ms
6,144 KB
testcase_02 AC 88 ms
6,144 KB
testcase_03 AC 52 ms
6,144 KB
testcase_04 AC 48 ms
6,144 KB
testcase_05 AC 50 ms
6,144 KB
testcase_06 AC 58 ms
6,272 KB
testcase_07 AC 58 ms
6,400 KB
testcase_08 AC 74 ms
6,272 KB
testcase_09 AC 74 ms
6,272 KB
testcase_10 AC 82 ms
6,144 KB
testcase_11 AC 84 ms
6,272 KB
testcase_12 AC 81 ms
6,272 KB
testcase_13 AC 83 ms
6,144 KB
testcase_14 AC 81 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
def cmp(x, y):
    if x < y:
        return 0
    if x == y:
        return 1
    return 2

def f(x):
    a = map(int, str(x))
    n = len(a)
    # dp[未満/丁度/超過][leading0][15でのあまり] := パターン数
    dp = [[[0] * 15 for _ in xrange(2)] for _ in xrange(3)] # dp[3][2][15]
    dp[1][0][0] = 1
    for i in reversed(xrange(n)):
        ndp = [[[0] * 15 for _ in xrange(2)] for _ in xrange(3)] # ndp[3][2][15]
        for flag in xrange(3):
            for leading0 in xrange(2):
                for rem in xrange(15):
                    if dp[flag][leading0][rem] == 0:
                        continue
                    for d in [0, 3, 5]:
                        if leading0 and d != 0:
                            continue
                        nflag = cmp(d, a[i])
                        if nflag == 1:
                            nflag = flag
                        nrem = (rem + pow(10, n-1-i, 15) * d) % 15
                        ndp[nflag][d == 0][nrem] += dp[flag][leading0][rem]
        dp = ndp
    res = 0
    for flag in xrange(2):
        for leading0 in xrange(2):
            res += dp[flag][leading0][0]
    return res - 1



def g(n):
    lo, hi = 0, 2**100
    while hi - lo > 1:
        md = (lo + hi) / 2
        if f(md) < n:
            lo = md
        else:
            hi = md
    return hi


n = int(raw_input())
res = g(n)
print res
0