编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#116938 #1463. [L1-1] 你是否清醒 Wrong Answer 88 20 ms 340 K C++ 17 / 652 B Sakura丶Charon 2025-04-19 13:14:20
显示原始代码
#pragma GCC optimize(3, "Ofast", "inline")
#include <bits/stdc++.h>
#ifdef ONLINE_JUDGE
#define debug(...)
#else
#include <debug.hpp>
#endif
#define int long long
#define x first
#define y second
using namespace std;
const int mod = 998244353;  // 1e9 + 7;

void pre() {}

void solve() {
    int x, y;
    cin >> x >> y;
    x = x * 60 + y;
    if (x >= 8 * 60 && x <= 16 * 60)
        cout << "How can you sleep at your age?" << '\n';
    else
        cout << "Good morning!" << '\n';
}

signed main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    int _ = 1;
    // cin >> _;
    pre();
    while (_--) solve();
    return 0;
}
子任务 #1
Wrong Answer
得分:87
测试点 #1
Accepted
得分:100
用时:2 ms
内存:264 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
Wrong Answer
得分:0
用时:2 ms
内存:264 KiB

输入文件(2.in

16 0

答案文件(2.out

Good morning!

用户输出

How can you sleep at your age?

Special Judge 信息

Files user_out and answer differ

系统信息

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

输入文件(4.in

7 59

答案文件(4.out

Good morning!

用户输出

Good morning!

系统信息

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

输入文件(6.in

16 1

答案文件(6.out

Good morning!

用户输出

Good morning!

系统信息

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

输入文件(8.in

3 25

答案文件(8.out

Good morning!

用户输出

Good morning!

系统信息

Exited with return code 0