結果
問題 | No.294 SuperFizzBuzz |
ユーザー | roiti46 |
提出日時 | 2015-12-09 20:01:06 |
言語 | PyPy2 (7.3.15) |
結果 |
AC
|
実行時間 | 397 ms / 5,000 ms |
コード長 | 1,110 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 76,828 KB |
実行使用メモリ | 92,180 KB |
最終ジャッジ日時 | 2024-09-15 05:58:02 |
合計ジャッジ時間 | 4,665 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 159 ms
90,760 KB |
testcase_01 | AC | 159 ms
91,016 KB |
testcase_02 | AC | 394 ms
91,900 KB |
testcase_03 | AC | 162 ms
91,068 KB |
testcase_04 | AC | 164 ms
91,164 KB |
testcase_05 | AC | 163 ms
91,028 KB |
testcase_06 | AC | 162 ms
91,164 KB |
testcase_07 | AC | 168 ms
91,328 KB |
testcase_08 | AC | 175 ms
91,424 KB |
testcase_09 | AC | 309 ms
91,932 KB |
testcase_10 | AC | 162 ms
91,168 KB |
testcase_11 | AC | 354 ms
91,936 KB |
testcase_12 | AC | 370 ms
92,064 KB |
testcase_13 | AC | 386 ms
91,688 KB |
testcase_14 | AC | 397 ms
92,180 KB |
ソースコード
# -*- coding: utf-8 -*- import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll def comb(n, r): res = 1 for i in xrange(r): res *= n - i for i in xrange(1, r + 1): res /= i return res def bitcount(x): x = (x & 0x5555555555555555) + (x >> 1 & 0x5555555555555555) x = (x & 0x3333333333333333) + (x >> 2 & 0x3333333333333333) x = (x & 0x0f0f0f0f0f0f0f0f) + (x >> 4 & 0x0f0f0f0f0f0f0f0f) x = (x & 0x00ff00ff00ff00ff) + (x >> 8 & 0x00ff00ff00ff00ff) x = (x & 0x0000ffff0000ffff) + (x >> 16 & 0x0000ffff0000ffff) return (x & 0x00000000ffffffff) + (x >> 32 & 0x00000000ffffffff) ans = 0 N = int(raw_input()) #3は5n個、5は3m個。1桁目は必ず5 for k in xrange(3, 26): cnt = 0 for i in xrange(3, k + 1, 3): j = k - i cnt += comb(j + i - 1, i - 1) if N > cnt: N -= cnt else: x = -1 while N: x += 2 if bitcount(x) % 3 == 0: N -= 1 ans = bin(x)[2:].zfill(k).replace("0", "3").replace("1", "5") break if ans > 0: break print ans