結果

問題 No.294 SuperFizzBuzz
ユーザー maimai
提出日時 2017-10-01 21:53:14
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 374 bytes
コンパイル時間 1,888 ms
コンパイル使用メモリ 170,136 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-05 12:42:23
合計ジャッジ時間 3,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 134 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 79 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 126 ms
5,376 KB
testcase_12 AC 136 ms
5,376 KB
testcase_13 AC 136 ms
5,376 KB
testcase_14 AC 138 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

char buff[99];
ll n;
{
    rd(n);
    rep(keta,2,99){
        rep(b,1<<keta){
            int c=-~__builtin_popcount(b);
            if(c*5%3)continue;
            if(!--n){
                int i=97;
                buff[i]='5';
                for(;b;b>>=1)buff[--i]=b&1?'5':'3';
                printf("%s",buff+i);
                exit(0);
            }
        }
    }
}
0