結果
問題 | No.495 (^^*) Easy |
ユーザー | ああいい |
提出日時 | 2022-03-24 19:01:09 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 151 bytes |
コンパイル時間 | 373 ms |
コンパイル使用メモリ | 81,728 KB |
実行使用メモリ | 67,208 KB |
最終ジャッジ日時 | 2024-10-13 02:41:27 |
合計ジャッジ時間 | 1,243 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
ソースコード
S = input() right = 0 left = 0 while i + 1 < len(S): if S[i+1] == "*": right += 1 else: left += 1 i += 5 print(left,right)