結果
問題 | No.1159 Sashiming String |
ユーザー | matrie |
提出日時 | 2020-12-25 01:27:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 175 bytes |
コンパイル時間 | 451 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 20,080 KB |
最終ジャッジ日時 | 2024-09-21 17:23:00 |
合計ジャッジ時間 | 5,237 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
16,000 KB |
testcase_01 | AC | 26 ms
10,624 KB |
testcase_02 | AC | 100 ms
11,776 KB |
testcase_03 | AC | 125 ms
12,868 KB |
testcase_04 | AC | 90 ms
11,904 KB |
testcase_05 | AC | 260 ms
12,544 KB |
testcase_06 | AC | 93 ms
11,648 KB |
testcase_07 | AC | 148 ms
12,160 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
import re s=input() s=re.sub(r'S','0',s) s=re.sub(r'ing','1',s) s=re.sub(r'[a-zA-Z]','',s) l=list(map(int,list(s))) c=0 while len(l)>0: if l[0]<1: c+=sum(l) l=l[1:] print(c)