結果
| 問題 | No.3661 Grid Paint Game |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-08-30 15:41:35 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.92.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 250 bytes |
| 記録 | |
| コンパイル時間 | 2,224 ms |
| コンパイル使用メモリ | 349,024 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-30 15:41:45 |
| 合計ジャッジ時間 | 4,395 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 2 WA * 6 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int t;
cin >> t;
for(int i=0; i<t; i++) {
long long h, w;
cin >> h >> w;
if((h+w)% 2 == 0) cout << "ryota" << endl;
else cout << "sepa";
}
}