結果

問題 No.294 SuperFizzBuzz
ユーザー Yukino DX.Yukino DX.
提出日時 2023-11-09 22:19:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 832 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 58,752 KB
最終ジャッジ日時 2024-09-26 00:36:57
合計ジャッジ時間 6,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 824 ms
58,624 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 41 ms
58,496 KB
testcase_07 AC 42 ms
58,624 KB
testcase_08 AC 80 ms
58,752 KB
testcase_09 AC 479 ms
58,752 KB
testcase_10 AC 480 ms
58,496 KB
testcase_11 AC 765 ms
58,752 KB
testcase_12 AC 784 ms
58,752 KB
testcase_13 AC 830 ms
58,496 KB
testcase_14 AC 832 ms
58,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import count

n = int(input())
for dig in count(1):
    for i in range(1 << dig):
        if i & 1 != 0 and i.bit_count() % 3 == 0:
            n -= 1

        if n == 0:
            ans = ""
            for j in range(dig):
                if i & (1 << j) != 0:
                    ans = "5" + ans
                else:
                    ans = "3" + ans

            print(ans)
            exit()
0