/ WOJ /

记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 1ms 356.0 KiB

代码

#include <bits/stdc++.h>
// #define endl '\n'
typedef long long ll;
// #define int ll
using namespace std;

void Main() {
    int tmp;
    cin >> tmp;
    cout << (tmp & 1 ? string("Kosuke") : string("Sakurako")) << endl;
}

signed main() {
    ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
    int t;
    cin >> t;
    while (t--) {
        Main();
    }
    return 0;
}

信息

递交者
类型
自测
语言
C++
递交时间
2025-01-13 10:00:51
评测时间
2025-01-13 10:00:51
评测机
分数
10
总耗时
1ms
峰值内存
356.0 KiB