結果

問題 No.3661 Grid Paint Game
コンテスト
ユーザー Rapca1256
提出日時 2026-08-30 15:00:28
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 440 ms / 2,000 ms
+ 57µs
コード長 784 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 290 ms
コンパイル使用メモリ 21,412 KB
実行使用メモリ 15,996 KB
最終ジャッジ日時 2026-08-30 15:00:34
合計ジャッジ時間 4,147 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
import math
#from collections import deque, defaultdict, Counter
#import heapq
#import bisect
#import itertools
#import functools

# 外部ライブラリ(AtCoder環境で利用可能)
#from sortedcontainers import SortedList, SortedSet, SortedDict
#from atcoder.dsu import DSU
#from atcoder.segtree import SegTree
#from atcoder.lazysegtree import LazySegTree
#from atcoder.fenwicktree import FenwickTree

# 入力高速化
#input = sys.stdin.readline
# 再帰回数上限

# よくあるmod
#MOD = 1000000007
MOD = 998244353

def solve():
    # 解答ここから
    H, W = map(int, input().split(' '))
    if (H+W) % 2 == 0:
        print("ryota")
    else:
        print("sepa")
if __name__ == '__main__':
    T = int(input())
    for _ in range(T):
        solve()
0