結果
問題 | No.294 SuperFizzBuzz |
ユーザー | srjywrdnprkt |
提出日時 | 2023-01-16 06:16:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 82 ms / 5,000 ms |
コード長 | 1,320 bytes |
コンパイル時間 | 1,127 ms |
コンパイル使用メモリ | 113,332 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 14:41:32 |
合計ジャッジ時間 | 2,076 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 80 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 6 ms
5,376 KB |
testcase_09 | AC | 51 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 68 ms
5,376 KB |
testcase_12 | AC | 73 ms
5,376 KB |
testcase_13 | AC | 76 ms
5,376 KB |
testcase_14 | AC | 82 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:49:19: warning: 'K' may be used uninitialized [-Wmaybe-uninitialized] 49 | int mx = 1<<(K-1); | ~~^~~ main.cpp:34:18: note: 'K' was declared here 34 | long long N, K, S, use; | ^
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> #include <cassert> using namespace std; vector<vector<long long>> comb; void combinations(long long n, long long modc=1e18){ comb.resize(n+1); for (long long i=0; i<=n; i++){ comb[i].resize(n+1); comb[i][0] = 1; } for (long long i=1; i <= n; i++){ for (long long j=1; j <= i; j++){ comb[i][j] = (comb[i-1][j-1] + comb[i-1][j]) % modc; } } } int main(){ long long N, K, S, use; cin >> N; combinations(30); for (int i=3; i<100; i++){ S = 0; for (int j=1; j<=i/3; j++) S += comb[i-1][3*j-1]; use = min(N, S); N -= use; if (N == 0){ K = i; break; } } int mx = 1<<(K-1); for (int i=0; i<mx; i++){ if ((__builtin_popcount(i)+1)%3 == 0){ if (use>1){ use--; continue; } for (int j=K-2; j>=0; j--){ if (i & 1<<j) cout << "5"; else cout << "3"; } cout << "5" << endl; return 0; } } return 0; }