結果
| 問題 | No.3661 Grid Paint Game |
| コンテスト | |
| ユーザー |
ONPU3
|
| 提出日時 | 2026-09-04 03:13:39 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 14 ms / 2,000 ms |
| + 130µs | |
| コード長 | 253 bytes |
| 記録 | |
| コンパイル時間 | 4,254 ms |
| コンパイル使用メモリ | 328,644 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-09-04 03:13:45 |
| 合計ジャッジ時間 | 5,382 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 8 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
int main()
{
cin.tie(0)->sync_with_stdio(0);
ll t;cin>>t;
while(t--)
{
ll h,w;cin>>h>>w;
if((h+w)%2==0)cout<<"ryota\n";
else cout<<"sepa\n";
}
}
ONPU3