結果
問題 | No.392 2分木をたどれ |
ユーザー | Mcpu3 |
提出日時 | 2018-12-06 17:27:16 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 485 bytes |
コンパイル時間 | 128 ms |
コンパイル使用メモリ | 29,952 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 02:34:45 |
合計ジャッジ時間 | 539 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
ソースコード
#include <stdio.h> #include <string.h> int main(void) { char ans[12], tmp; int m, a, top, length, i, j; scanf("%d", &m); for (i = 0; i < m; ++i) { scanf("%d", &a); top = 0; do { if (a % 2) ans[top] = 'L'; else { ans[top] = 'R'; --a; } ++top; } while (a /= 2); ans[top] = '\0'; length = strlen(ans); for (j = 0; j < length / 2; ++j) { tmp = ans[j]; ans[j] = ans[length - j - 1]; ans[length - j - 1] = tmp; } puts(ans); } return 0; }