結果
問題 | No.1159 Sashiming String |
ユーザー | matrie |
提出日時 | 2020-12-25 01:43:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 180 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 20,212 KB |
最終ジャッジ日時 | 2024-09-21 17:23:39 |
合計ジャッジ時間 | 4,827 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,568 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 109 ms
12,032 KB |
testcase_03 | AC | 140 ms
12,864 KB |
testcase_04 | AC | 96 ms
11,776 KB |
testcase_05 | AC | 262 ms
12,544 KB |
testcase_06 | AC | 98 ms
11,648 KB |
testcase_07 | AC | 151 ms
12,032 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 for i in range(len(l)): if l[i]<1: c+=sum(l[i+1:]) print(c)