結果
問題 | No.104 国道 |
ユーザー |
![]() |
提出日時 | 2023-10-20 11:45:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 38 ms / 5,000 ms |
コード長 | 69 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 82,272 KB |
実行使用メモリ | 53,568 KB |
最終ジャッジ日時 | 2024-09-20 07:17:41 |
合計ジャッジ時間 | 1,697 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 16 |
ソースコード
s = input()l = 1for c in s:l = 2 * l + (c == "R")print(l)