結果
問題 | No.392 2分木をたどれ |
ユーザー | lonly |
提出日時 | 2016-08-11 23:30:44 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 361 bytes |
コンパイル時間 | 391 ms |
コンパイル使用メモリ | 21,120 KB |
実行使用メモリ | 15,048 KB |
最終ジャッジ日時 | 2024-11-07 11:08:43 |
合計ジャッジ時間 | 6,622 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
コンパイルメッセージ
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; scanf("%d", &m); for(i=0;i<m;i++){ scanf("%d", &a); while(a > 0){ if(a%2 == 0){ s[k] += 'R'; }else{ s[k] += 'L'; } a = (a-1)/2; k++; } for(i=k-1;i>=0;i--){ printf("%c",s[i]); } k=0; } return 0; }