結果
| 問題 |
No.667 Mice's Luck(ネズミ達の運)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-12-18 04:24:07 |
| 言語 | Nim (2.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,190 bytes |
| コンパイル時間 | 2,158 ms |
| コンパイル使用メモリ | 61,176 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-01 06:02:42 |
| 合計ジャッジ時間 | 3,620 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 6 |
ソースコード
proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .}
proc putchar_unlocked(c:char){.header: "<stdio.h>" .}
proc printInt(a:int,skipLeavingZeros:bool = false) =
# https://stackoverflow.com/questions/18006748/using-putchar-unlocked-for-fast-output
if a == 0:
putchar_unlocked('0')
return
var n = a
var rev = a
var cnt = 0
while rev mod 10 == 0:
cnt += 1
rev = rev div 10
rev = 0
while n != 0:
rev = (rev shl 3) + (rev shl 1) + n mod 10
n = n div 10
while rev != 0:
putchar_unlocked((rev mod 10 + '0'.ord).chr)
rev = rev div 10
if not skipLeavingZeros:
while cnt != 0:
putchar_unlocked('0')
cnt -= 1
proc printFloat(a,b:int) =
if a == 0:
putchar_unlocked('0')
else:
printInt(a div b)
if a mod b != 0:
putchar_unlocked('.')
const leaving = 1000000
printInt((a * leaving div b) mod leaving,true)
putchar_unlocked('\n')
var S : array[100002,char]
var left = 0
var l = 0
while true:
l += 1
let c = getchar_unlocked()
S[l] = c
if c == 'o' : left += 1
elif c != 'x': break
left *= 100
for i in 1..<l:
printFloat(left,l-i)
if S[i] == 'o' : left -= 100