結果

問題 No.805 UMG
ユーザー ikdikd
提出日時 2019-03-22 23:16:22
言語 Nim
(2.2.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 3,499 ms
コンパイル使用メモリ 65,264 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 13:29:26
合計ジャッジ時間 4,266 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 18) Warning: imported and not used: 'sequtils' [UnusedImport]

ソースコード

diff #

import strutils, sequtils

proc main() =
  let
    n = stdin.readLine.strip.parseInt
    s = stdin.readLine.strip

  var ans: int64 = 0
  for i in 0..<n:
    for k in (i + 2)..<n:
      if s[i] == 'U' and s[k] == 'G':
        if (i + k) mod 2 == 0 and s[(i + k) div 2] == 'M':
          ans += 1
  echo ans
main()
0