結果
問題 | No.501 穴と文字列 |
ユーザー | くれちー |
提出日時 | 2017-04-09 11:57:02 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 948 bytes |
コンパイル時間 | 240 ms |
コンパイル使用メモリ | 30,208 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-18 01:26:23 |
合計ジャッジ時間 | 3,826 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
10,624 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> #include <math.h> #define REP(i, n) for (ll i = 0; i < n; i++) #define REP1(i, n) for (ll i = 1; i <= n; i++) #define RREP(i, n) for (ll i = n - 1; i >= 0; i--) #define RREP1(i, n) for (ll i = n; i >= 1; i--) #define FOR(i, a, b, c) for (ll i = a; i <= b; i += c) #define RFOR(i, a, b, c) for (ll i = a; i >= b; i -= c) #define MAX(a, b) (a > b ? a : b) #define MIN(a, b) (a < b ? a : b) #define INF 1145141919 typedef long long ll; int n, d; char s[50001]; bool dfs(int idx, int sum) { if (idx == n) return sum == d; if (sum > d) return false; if (dfs(idx + 1, sum + 1)) { s[idx] = 'A'; return true; } else if (dfs(idx + 1, sum)) { s[idx] = 'C'; return true; } else if (dfs(idx + 1, sum + 2)) { s[idx] = 'B'; return true; } return false; } int main() { scanf("%d %d", &n, &d); dfs(0, 0); REP(i, n) putchar(s[i]); return 0; }