結果

問題 No.392 2分木をたどれ
ユーザー YoshiRyuYoshiRyu
提出日時 2017-01-04 17:17:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 45,152 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-10 00:31:27
合計ジャッジ時間 969 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 | #define SF(f,v) scanf(f,v)
      |                 ~~~~~^~~~~
main.cpp:14:9: note: in expansion of macro ‘SF’
   14 |         SF("%d", &m);
      |         ^~
main.cpp:6:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 | #define SF(f,v) scanf(f,v)
      |                 ~~~~~^~~~~
main.cpp:23:17: note: in expansion of macro ‘SF’
   23 |                 SF("%d", &calc);
      |                 ^~

ソースコード

diff #

#include <cstdio>
#include <string>

#define REP(i,n) for(int i=0;i<n;i++)
#define rep(n) REP(i,n)
#define SF(f,v) scanf(f,v)
#define PF(f,v) printf(f,v)

using namespace std;

int main() {
	
	int m;
	SF("%d", &m);

	rep(m)
	{
		// 出力用
		string ans = "";

		// Aの値
		int calc;
		SF("%d", &calc);

		do
		{
			if ((calc % 2) == 0)
			{
				ans = "R" + ans;
			}
			else
			{
				ans = "L" + ans;
			}
			
			// 小数点以下は切り捨てられる
			calc = (calc - 1 ) / 2;

		} while (calc > 0);

		PF("%s\n", ans.c_str());
	}
	
	return 0;
}
0