8424: Moo

内存限制:128 MB 时间限制:1 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:1 通过:1

题目描述

The cows have gotten themselves hooked on a new word game, called "Moo". It is played by a group of cows standing in a long line, where each cow in sequence is responsible for calling out a specific letter as quickly as possible. The first cow who makes a mistake loses. The sequence of letters in Moo can technically continue forever. It starts like this: m o o m o o o m o o m o o o o m o o m o o o m o o m o o o o o The sequence is best described recursively: let S(0) be the 3-character sequence "m o o". Then a longer sequence S(k) is obtained by taking a copy of the sequence S(k-1), then "m o ... o" with k+2 o's, and then another copy of the sequence S(k-1). For example: S(0) = "m o o" S(1) = "m o o m o o o m o o" S(2) = "m o o m o o o m o o m o o o o m o o m o o o m o o" As you can see, this process ultimately builds an infinitely long string, and this is the string of characters used for the game of Moo. Bessie the cow, feeling clever, wishes to predict whether the Nth character of this string will be an "m" or an "o". Please help her out! PROBLEM NAME: moo


奶牛们迷上了一个名为 “Moo” 的新单词游戏。

游戏进行时,一群奶牛排成一排,每头奶牛按顺序尽快喊出一个特定字母。

第一个喊错的牛就输了。

从技术上讲,Moo 中的字母序列可以无限延续:

m o o m o o o m o o m o o o o m o o m o o o m o o m o o o o o ...

该序列可以用递归方式描述:

  1. S0S0 为一个 33 个字符的序列 “moo”。
  2. SkSk 由 Sk−1Sk−1 连接 “mo…o”(其中 k+2k+2 个 o)再连接 Sk−1构成。

例如:

S(0) = "m o o" S(1) = "m o o m o o o m o o" S(2) = "m o o m o o o m o o m o o o o m o o m o o o m o o" 

如你所见,此过程最终将构建一个无限长的字符串,也就是 Moo 游戏中使用的字符串。

请帮助贝茜确定这个无限长的字符串中的第 N 个字符是 m 还是 o。


输入格式

* Line 1: A single integer N (1 <= N <= 10^9).
一个整数 NN

输出格式

Bessie wants to predict the 11th character.
输出第 NN 个字符。

输入样例 复制

11

输出样例 复制

m

数据范围与提示

1≤N≤109