結果
| 問題 | No.104 国道 |
| コンテスト | |
| ユーザー |
machy
|
| 提出日時 | 2015-06-11 20:09:11 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 375 bytes |
| 記録 | |
| コンパイル時間 | 764 ms |
| コンパイル使用メモリ | 92,220 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-03-28 05:32:10 |
| 合計ジャッジ時間 | 1,213 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 16 |
ソースコード
#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;
}
machy