結果
| 問題 | No.3661 Grid Paint Game |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-08-30 15:19:42 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
AC
|
| 実行時間 | 107 ms / 2,000 ms |
| + 794µs | |
| コード長 | 264 bytes |
| 記録 | |
| コンパイル時間 | 237 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 85,120 KB |
| 最終ジャッジ日時 | 2026-08-30 15:19:48 |
| 合計ジャッジ時間 | 2,577 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 8 |
ソースコード
from sys import stdin
def input():
return stdin.readline().rstrip("\n")
def solve():
h, w = map(lambda s_: int(s_), input().split())
print("sepa" if (h + w) % 2 else "ryota")
case_t = 1
case_t = int(input())
for _ in [None] * case_t:
solve()