結果

問題 No.104 国道
ユーザー hiro1729hiro1729
提出日時 2023-09-11 08:40:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 56 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 53,260 KB
最終ジャッジ日時 2024-06-28 23:18:41
合計ジャッジ時間 1,475 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,212 KB
testcase_01 AC 36 ms
52,864 KB
testcase_02 AC 34 ms
52,032 KB
testcase_03 AC 34 ms
53,168 KB
testcase_04 AC 34 ms
52,812 KB
testcase_05 AC 32 ms
52,452 KB
testcase_06 AC 32 ms
52,320 KB
testcase_07 AC 32 ms
52,608 KB
testcase_08 AC 31 ms
52,124 KB
testcase_09 AC 34 ms
52,144 KB
testcase_10 AC 34 ms
52,412 KB
testcase_11 AC 32 ms
52,644 KB
testcase_12 AC 32 ms
52,948 KB
testcase_13 AC 33 ms
51,812 KB
testcase_14 AC 35 ms
52,688 KB
testcase_15 AC 33 ms
52,448 KB
testcase_16 AC 32 ms
53,260 KB
testcase_17 AC 32 ms
52,044 KB
testcase_18 AC 33 ms
51,884 KB
testcase_19 AC 33 ms
52,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = 1
for i in input():
	n = n * 2 + (i == 'R')
print(n)
0