結果
問題 | No.104 国道 |
ユーザー |
![]() |
提出日時 | 2019-02-22 07:50:17 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 255 bytes |
コンパイル時間 | 1,154 ms |
コンパイル使用メモリ | 55,008 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 14:31:14 |
合計ジャッジ時間 | 1,430 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 16 |
ソースコード
#include<iostream> #include<string> using namespace std; int main(){ string S; cin>>S; int n=1; for(int i=0;i<S.length();i++){ if(S[i]=='L'){ n+=n; }else{ n+=n+1; } } cout<<n<<endl; }