编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#116958 #1463. [L1-1] 你是否清醒 Accepted 100 22 ms 372 K C++ 17 (Clang) / 237 B 15291309895 2025-04-21 23:19:28
显示原始代码
#include <iostream>
using namespace std;
int x, y;
int main() {
    cin >> x >> y;
    if ((x == 16 && y >= 0) || (x < 8) || (x > 16))
        cout << "Good morning!";
    else
        cout << "How can you sleep at your age?";
    return 0;
}
子任务 #1
Accepted
得分:100
测试点 #1
Accepted
得分:100
用时:2 ms
内存:256 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
用时:3 ms
内存:260 KiB

输入文件(2.in

16 0

答案文件(2.out

Good morning!

用户输出

Good morning!

系统信息

Exited with return code 0
测试点 #3
Accepted
得分:100
用时:2 ms
内存:260 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
用时:3 ms
内存:256 KiB

输入文件(4.in

7 59

答案文件(4.out

Good morning!

用户输出

Good morning!

系统信息

Exited with return code 0
测试点 #5
Accepted
得分:100
用时:3 ms
内存:256 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
用时:4 ms
内存:260 KiB

输入文件(6.in

16 1

答案文件(6.out

Good morning!

用户输出

Good morning!

系统信息

Exited with return code 0
测试点 #7
Accepted
得分:100
用时:2 ms
内存:220 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
用时:3 ms
内存:372 KiB

输入文件(8.in

3 25

答案文件(8.out

Good morning!

用户输出

Good morning!

系统信息

Exited with return code 0