結果
| 問題 | 
                            No.104 国道
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2017-07-15 12:05:50 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 253 bytes | 
| コンパイル時間 | 459 ms | 
| コンパイル使用メモリ | 56,132 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-10-08 02:14:37 | 
| 合計ジャッジ時間 | 1,151 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 16 | 
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main() {
  string s;
  cin >> s;
  int n = 1;
  for (size_t i = 0; i < s.length(); i++) {
    if (s[i] == 'L') n = 2 * n;
    else if (s[i] == 'R') n = 2 * n + 1;
  }
  cout << n << endl;
}