結果
問題 | No.2671 NUPC Decompressor |
ユーザー | mikan0131 |
提出日時 | 2024-03-22 12:32:55 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 559 bytes |
コンパイル時間 | 2,746 ms |
コンパイル使用メモリ | 213,188 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 10:35:02 |
合計ジャッジ時間 | 2,803 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int N; string f(string T, int a) { if (a == 2) T = T + T; return T; } int main() { cin >> N; vector <string> S; for (int i = 1; i <= 2; i++) { for (int j = 1; j <= 2; j++) { for (int k = 1; k <= 2; k++) { for (int l = 1; l <= 2; l++) { string T = ""; T += 'N'; T = f(T, i); T += 'U'; T = f(T, j); T += 'P'; T = f(T, k); T += 'C'; T = f(T, l); S.push_back(T); } } } } sort(S.begin(), S.end()); cout << S.at(N - 1) << endl; return 0; }