結果

問題 No.1801 Segment Game
ユーザー gr1msl3ygr1msl3y
提出日時 2022-02-23 21:09:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,616 KB
最終ジャッジ日時 2024-07-01 21:35:37
合計ジャッジ時間 3,859 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 223 ms
82,728 KB
testcase_02 AC 223 ms
82,816 KB
testcase_03 AC 223 ms
83,116 KB
testcase_04 AC 220 ms
82,884 KB
testcase_05 AC 220 ms
82,564 KB
testcase_06 AC 219 ms
82,856 KB
testcase_07 AC 186 ms
83,560 KB
testcase_08 AC 184 ms
83,616 KB
testcase_09 AC 219 ms
82,736 KB
testcase_10 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    T = int(input())
    ans = []
    for _ in range(T):
        h, w, d = map(int, input().split())
        ans.append(solve(h, w, d))
    print(*ans, sep='\n')


def solve(h, w, d):
    f = 0
    if h % 2:
        f |= w**2+1 <= d**2
    else:
        f |= w <= d
    if w % 2:
        f |= h**2+1 <= d**2
    else:
        f |= h <= d
    return 'N' if f else 'S'


main()
0