結果
| 問題 |
No.104 国道
|
| コンテスト | |
| ユーザー |
f843nmfwisfeuw
|
| 提出日時 | 2020-06-16 20:48:40 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 642 bytes |
| コンパイル時間 | 718 ms |
| コンパイル使用メモリ | 92,224 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-03 11:57:54 |
| 合計ジャッジ時間 | 1,623 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 16 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <iomanip>
#include <stack>
#include <algorithm>
#include <string>
#include <map>
#include <iterator>
#include <set>
#include <queue>
using namespace std;
int main() {
string S;
cin >> S;
long N = S.size();
long res = 1;
for (int i = 0; i < N; ++i) {
res *= 2;
}
for (int i = 0; i < N; ++i) {
if (S[i] == 'R') {
long tmp = 1;
for (int j = 0; j < N - i - 1; ++j) {
tmp *= 2;
}
res += tmp;
}
}
cout << res << endl;
return 0;
}
f843nmfwisfeuw