結果
問題 | No.104 国道 |
ユーザー |
|
提出日時 | 2020-09-05 01:13:51 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 330 bytes |
コンパイル時間 | 1,454 ms |
コンパイル使用メモリ | 166,168 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-26 21:26:03 |
合計ジャッジ時間 | 2,331 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 16 |
ソースコード
#include <bits/stdc++.h> #define rep(i, ss, ee) for (int i = ss; i < ee; ++i) using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); int N; int ans = 1; string s; cin >> s; rep(i, 0, s.size()) { ans *= 2; if (s[i] == 'R') { ans++; } } cout << ans << endl; getchar(); }