結果

問題 No.104 国道
ユーザー machy
提出日時 2015-06-11 20:09:11
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 72,008 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-06 15:43:40
合計ジャッジ時間 1,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cmath>
#include <iomanip>
using namespace std;
typedef long long LL;

int main(){
    string s;
    cin >> s;
    LL ans = 1;
    for(int i = 0; i < s.size(); i++){
        ans <<= 1;
        if(s[i] == 'R'){
            ans += 1;
        }
    }
    cout << ans << endl;
    return 0;
}
0