結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー | 6soukiti29 |
提出日時 | 2018-03-23 22:35:57 |
言語 | Nim (2.2.0) |
結果 |
AC
|
実行時間 | 222 ms / 2,000 ms |
コード長 | 196 bytes |
コンパイル時間 | 2,912 ms |
コンパイル使用メモリ | 66,204 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 05:10:01 |
合計ジャッジ時間 | 4,986 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import sequtils,strutils var S = stdin.readline a,b : int a = S.count('o') b = S.count('x') for s in S: echo(a / (a + b) * 100) if s == 'o': a -= 1 else: b -= 1