結果

問題 No.294 SuperFizzBuzz
ユーザー ckawatakckawatak
提出日時 2018-07-28 18:12:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,261 ms / 5,000 ms
コード長 317 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 75,528 KB
最終ジャッジ日時 2024-07-06 01:42:04
合計ジャッジ時間 21,074 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 42 ms
57,856 KB
testcase_02 AC 3,261 ms
75,528 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 38 ms
51,328 KB
testcase_06 AC 46 ms
59,648 KB
testcase_07 AC 48 ms
66,176 KB
testcase_08 AC 222 ms
75,136 KB
testcase_09 AC 1,716 ms
75,264 KB
testcase_10 AC 1,702 ms
75,264 KB
testcase_11 AC 2,976 ms
75,520 KB
testcase_12 AC 2,945 ms
75,264 KB
testcase_13 AC 2,971 ms
75,264 KB
testcase_14 AC 3,020 ms
75,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def bitcount(n):
    r = 0
    while 0 < n:
        r = r + (n & 1)
        n = n >> 1
    return r

i = 1
while 0 < N:
    i = i + 2
    if bitcount(i) % 3 == 1:
        N = N - 1

for j in reversed(range(31)):
    n = i >> j
    if 1 < n:
        print('5' if n % 2 != 0 else '3', end='')
print()
0