結果
問題 | No.104 国道 |
ユーザー |
|
提出日時 | 2019-10-13 11:24:58 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 309 bytes |
コンパイル時間 | 621 ms |
コンパイル使用メモリ | 69,680 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-14 14:12:42 |
合計ジャッジ時間 | 1,456 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 16 |
ソースコード
#include <iostream>#include <vector>#include <algorithm>using namespace std;typedef long long int ll;int main(){cin.tie(nullptr);ios::sync_with_stdio(false);string s; cin >> s;int n=s.size();ll ans=1;for(int i=0;i<n;i++){if(s[i]=='L')ans*=2;else ans=ans*2+1;}cout << ans << endl;}