結果
問題 | No.392 2分木をたどれ |
ユーザー | Tawara |
提出日時 | 2016-07-14 23:02:13 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 172 bytes |
コンパイル時間 | 446 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-10-14 17:18:34 |
合計ジャッジ時間 | 532 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
m = int(raw_input()) for i in xrange(m): A = int(raw_input()) root = [] while A > 0: root.append("R" if A % 2 == 0 else "L") A = (A-1)/2 print " ".join(root)[::-1]