結果
問題 | No.392 2分木をたどれ |
ユーザー | suppy193 |
提出日時 | 2016-07-22 13:58:23 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 360 bytes |
コンパイル時間 | 431 ms |
コンパイル使用メモリ | 20,480 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-11-06 08:14:07 |
合計ジャッジ時間 | 610 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d", &m); | ^~~~~~~~~~~~~~~ main.c:10:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%d", &a); | ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int m, a; char s[15]; int i, j; int k; scanf("%d", &m); for(i = 0;i < m;i++){ scanf("%d", &a); k = 0; do{ if(a % 2 == 1){ s[k] = 'L'; } else{ s[k] = 'R'; } k++; a = (a - 1) / 2; } while(a > 0); for(j = k - 1;j >= 0;j--){ printf("%c", s[j]); } printf("\n"); } return 0; }