結果

問題 No.1801 Segment Game
ユーザー ああいいああいい
提出日時 2022-01-08 18:00:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 76,908 KB
最終ジャッジ日時 2024-11-14 12:09:54
合計ジャッジ時間 4,468 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,944 KB
testcase_01 AC 323 ms
76,716 KB
testcase_02 AC 316 ms
76,448 KB
testcase_03 AC 321 ms
76,508 KB
testcase_04 AC 323 ms
76,908 KB
testcase_05 AC 321 ms
76,704 KB
testcase_06 AC 323 ms
76,892 KB
testcase_07 AC 302 ms
76,388 KB
testcase_08 AC 298 ms
76,436 KB
testcase_09 AC 317 ms
76,516 KB
testcase_10 AC 38 ms
52,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    h,w,d = map(int,input().split())
    if w > h:
        w,h = h,w
    if h % 2 == 0:
        if d >= w:
            print('N')
        else:
            print('S')
    else:
        if d * d >= w * w + 1:
            print('N')
        else:
            print('S')
            
0