結果

問題 No.294 SuperFizzBuzz
ユーザー simansiman
提出日時 2021-10-19 15:42:16
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 4,469 ms
コンパイル使用メモリ 141,528 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 06:21:43
合計ジャッジ時間 6,990 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
6,812 KB
testcase_01 AC 121 ms
6,940 KB
testcase_02 AC 108 ms
6,940 KB
testcase_03 AC 118 ms
6,944 KB
testcase_04 AC 120 ms
6,940 KB
testcase_05 AC 122 ms
6,940 KB
testcase_06 AC 124 ms
6,940 KB
testcase_07 AC 124 ms
6,944 KB
testcase_08 AC 119 ms
6,940 KB
testcase_09 AC 122 ms
6,940 KB
testcase_10 AC 62 ms
6,944 KB
testcase_11 AC 100 ms
6,940 KB
testcase_12 AC 108 ms
6,944 KB
testcase_13 AC 102 ms
6,940 KB
testcase_14 AC 110 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <limits.h>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int main() {
  int N;
  cin >> N;

  for (int d = 3; d <= 25; ++d) {
    for (int mask = 0; mask < (1 << d); ++mask) {
      if ((mask & 1) == 0) continue;
      if (__builtin_popcount(mask) % 3 != 0) continue;

      --N;
      if (N == 0) {
        string ans = "";
        for (int i = 0; i < d; ++i){
          if ((mask >> (d - i - 1)) & 1) {
            ans += "5";
          } else {
            ans += "3";
          }
        }
        cout << ans << endl;
        break;
      }
    }
  }

  return 0;
}
0