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