結果

問題 No.294 SuperFizzBuzz
ユーザー titiatitia
提出日時 2022-10-17 05:42:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,513 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-06-27 22:00:48
合計ジャッジ時間 14,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 2,513 ms
75,392 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 39 ms
52,060 KB
testcase_06 AC 48 ms
61,312 KB
testcase_07 AC 48 ms
61,568 KB
testcase_08 AC 158 ms
75,560 KB
testcase_09 AC 1,615 ms
75,264 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 2,105 ms
75,612 KB
testcase_12 AC 2,278 ms
75,380 KB
testcase_13 AC 2,435 ms
75,392 KB
testcase_14 AC 2,501 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
count=0

A=[0,1,4,10,21,42,84,169,340,682,1365,2730,5460,10921,21844,43690,87381,174762,349524,699049,1398100,2796202,5592405]


ss=25
count=A[-1]

for i in range(len(A)):
    if A[i]>=N:
        ss=i-1+3
        count=A[i-1]
        break


for j in range(1<<ss):
    if j%2==0:
        continue
    c=0
    for k in range(ss):
        if j & (1<<k) !=0:
            c+=1
        
    if c%3!=0:
        continue

    count+=1
    
    if count==N:
        y=""
        for k in bin(j)[2:].zfill(ss):
            if k=="0":
                y+="3"
            else:
                y+="5"
        print(y)
        break
0