NC212852. 抢buff
描述
输入描述
输入n(1<=n<=1e3000)表示野怪血量
输出描述
如果你抢到了buff,输出1如果你队友抢到了buff,输出2
示例1
输入:
1
输出:
1
说明:
野怪血量为1,你直接击杀示例2
输入:
2
输出:
2
说明:
C++(clang++11) 解法, 执行用时: 8ms, 内存消耗: 400K, 提交时间: 2020-12-02 13:39:21
#include<bits/stdc++.h> using namespace std; string s; int main() { cin>>s; puts(s[s.size()-1]%2?"1":"2"); }
pypy3(pypy3.6.1) 解法, 执行用时: 46ms, 内存消耗: 18668K, 提交时间: 2020-11-29 13:39:43
n = int(input()) if n % 2 != 0: print(1) else: print(2)
Python3 解法, 执行用时: 44ms, 内存消耗: 4572K, 提交时间: 2022-06-08 12:42:28
print(2-(int(input())&1))