結果
| 問題 | No.3661 Grid Paint Game |
| コンテスト | |
| ユーザー |
tau1235
|
| 提出日時 | 2026-08-30 14:23:09 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
|
| 実行時間 | 118 ms / 2,000 ms |
| + 714µs | |
| コード長 | 185 bytes |
| 記録 | |
| コンパイル時間 | 2,126 ms |
| コンパイル使用メモリ | 328,380 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-30 14:23:39 |
| 合計ジャッジ時間 | 3,706 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 8 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
int t;
cin>>t;
while (t--){
int h,w;
cin>>h>>w;
if (h%2==w%2) cout<<"ryota\n";
else cout<<"sepa\n";
}
}
tau1235