编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#116947 #1463. [L1-1] 你是否清醒 Accepted 100 107 ms 2836 K Python 3 / 310 B Hensenber 2025-04-21 10:29:23
string = input()
a = int(string.split()[0])
b = int(string.split()[1])
if a == 8 and b == 0:
    print("How can you sleep at your age?")
elif a == 16 and b == 0:
    print('Good morning!')
elif (a == 8 and b > 0) or 8<a<16:
    print("How can you sleep at your age?")
else:
    print('Good morning!')
子任务 #1
Accepted
得分:100
测试点 #1
Accepted
得分:100
用时:13 ms
内存:2812 KiB

输入文件(1.in

8 0

答案文件(1.out

How can you sleep at your age?

用户输出

How can you sleep at your age?

系统信息

Exited with return code 0
测试点 #2
Accepted
得分:100
用时:13 ms
内存:2812 KiB

输入文件(2.in

16 0

答案文件(2.out

Good morning!

用户输出

Good morning!

系统信息

Exited with return code 0
测试点 #3
Accepted
得分:100
用时:16 ms
内存:2812 KiB

输入文件(3.in

15 59

答案文件(3.out

How can you sleep at your age?

用户输出

How can you sleep at your age?

系统信息

Exited with return code 0
测试点 #4
Accepted
得分:100
用时:15 ms
内存:2836 KiB

输入文件(4.in

7 59

答案文件(4.out

Good morning!

用户输出

Good morning!

系统信息

Exited with return code 0
测试点 #5
Accepted
得分:100
用时:14 ms
内存:2800 KiB

输入文件(5.in

8 1

答案文件(5.out

How can you sleep at your age?

用户输出

How can you sleep at your age?

系统信息

Exited with return code 0
测试点 #6
Accepted
得分:100
用时:11 ms
内存:2780 KiB

输入文件(6.in

16 1

答案文件(6.out

Good morning!

用户输出

Good morning!

系统信息

Exited with return code 0
测试点 #7
Accepted
得分:100
用时:13 ms
内存:2816 KiB

输入文件(7.in

8 2

答案文件(7.out

How can you sleep at your age?

用户输出

How can you sleep at your age?

系统信息

Exited with return code 0
测试点 #8
Accepted
得分:100
用时:12 ms
内存:2824 KiB

输入文件(8.in

3 25

答案文件(8.out

Good morning!

用户输出

Good morning!

系统信息

Exited with return code 0