結果

問題 No.1801 Segment Game
ユーザー H20H20
提出日時 2022-01-08 01:11:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 77,004 KB
最終ジャッジ日時 2024-11-14 11:57:09
合計ジャッジ時間 4,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,416 KB
testcase_01 AC 325 ms
76,480 KB
testcase_02 AC 316 ms
77,004 KB
testcase_03 AC 312 ms
76,820 KB
testcase_04 AC 317 ms
76,888 KB
testcase_05 AC 316 ms
76,624 KB
testcase_06 AC 316 ms
76,664 KB
testcase_07 AC 301 ms
76,612 KB
testcase_08 AC 303 ms
76,576 KB
testcase_09 AC 317 ms
76,548 KB
testcase_10 AC 37 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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