結果
問題 | No.150 "良問"(良問とは言っていない |
ユーザー | tanimani364 |
提出日時 | 2021-03-23 18:33:12 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 157 ms / 5,000 ms |
コード長 | 717 bytes |
コンパイル時間 | 419 ms |
コンパイル使用メモリ | 82,260 KB |
実行使用メモリ | 78,252 KB |
最終ジャッジ日時 | 2024-11-25 10:02:00 |
合計ジャッジ時間 | 3,373 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 107 ms
77,596 KB |
testcase_01 | AC | 56 ms
64,204 KB |
testcase_02 | AC | 57 ms
65,688 KB |
testcase_03 | AC | 56 ms
64,952 KB |
testcase_04 | AC | 55 ms
64,620 KB |
testcase_05 | AC | 69 ms
71,192 KB |
testcase_06 | AC | 143 ms
78,252 KB |
testcase_07 | AC | 55 ms
63,976 KB |
testcase_08 | AC | 61 ms
68,344 KB |
testcase_09 | AC | 58 ms
65,048 KB |
testcase_10 | AC | 113 ms
77,548 KB |
testcase_11 | AC | 117 ms
77,656 KB |
testcase_12 | AC | 114 ms
77,556 KB |
testcase_13 | AC | 119 ms
77,684 KB |
testcase_14 | AC | 124 ms
77,872 KB |
testcase_15 | AC | 120 ms
77,964 KB |
testcase_16 | AC | 76 ms
77,484 KB |
testcase_17 | AC | 93 ms
77,904 KB |
testcase_18 | AC | 120 ms
77,872 KB |
testcase_19 | AC | 121 ms
77,684 KB |
testcase_20 | AC | 157 ms
78,208 KB |
ソースコード
#!/usr/bin/env python3 #coding:utf-8 import math import string from sys import stdin # import numpy as np # from matplotlib import pyplot as plt def main(): read=stdin.readline #edit here! t=int(read()) while t>0: t-=1 s=read() n=len(s) n-=1 ans=n good=lambda a,b,c,d:(a!='g')+(b!='o')+(c!='o')+(d!='d') problem=lambda a,b,c,d,e,f,g:(a!='p')+(b!='r')+(c!='o')+(d!='b')+(e!='l')+(f!='e')+(g!='m') for i in range(n-10): res=0 res+=good(s[i],s[i+1],s[i+2],s[i+3]) minv=n for j in range(n-i-10): minv=min(minv,problem(s[i+4+j],s[i+4+j+1],s[i+4+j+2],s[i+4+j+3],s[i+4+j+4],s[i+4+j+5],s[i+4+j+6])) res+=minv ans=min(ans,res) print(ans) if __name__ == '__main__': main()