NC230835. Rise of Shadow
描述
输入描述
The first line contains only one integer (), denoting the number of test cases.
Each case consists of only an integer () in one line, representing the number of the year Toilet-Ares wants to know about.
输出描述
For each case, if the year is a prime leap year, print "yes" in one line, otherwise print "no" in one line.
示例1
输入:
1 2020
输出:
no
matlab 解法, 执行用时: 101ms, 内存消耗: 8312K, 提交时间: 2021-11-21 09:45:05
n=input(""); for i=1:n disp("no"); end
Python3 解法, 执行用时: 63ms, 内存消耗: 7036K, 提交时间: 2021-11-20 16:03:37
print('no\n'*(int(input())))