結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー むらためむらため
提出日時 2018-12-18 04:31:37
言語 Nim
(2.0.2)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 1,305 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 67,016 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-13 21:41:40
合計ジャッジ時間 4,157 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 3 ms
4,384 KB
testcase_06 AC 7 ms
4,376 KB
testcase_07 AC 13 ms
4,380 KB
testcase_08 AC 6 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = 100000
      let r = (a * leaving div b) mod leaving
      var l = leaving div 10
      while l > r :
        putchar_unlocked('0')
        l = l div 10
      printInt(r,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
0