結果
問題 |
No.805 UMG
|
ユーザー |
![]() |
提出日時 | 2021-03-19 10:08:59 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 575 ms / 2,000 ms |
コード長 | 190 bytes |
コンパイル時間 | 243 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-18 14:10:14 |
合計ジャッジ時間 | 4,705 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
n=int(input()) s=input() ans=0 for i in range(n): if s[i]!='U': continue k=(n-i-1)//2 for j in range(k+1): if s[i+j]=='M' and s[i+2*j]=='G': ans+=1 print(ans)