結果

問題 No.1801 Segment Game
ユーザー 👑 KazunKazun
提出日時 2022-01-07 21:36:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 77,584 KB
最終ジャッジ日時 2024-11-14 11:46:02
合計ジャッジ時間 2,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,464 KB
testcase_01 AC 120 ms
77,584 KB
testcase_02 AC 119 ms
77,140 KB
testcase_03 AC 119 ms
77,564 KB
testcase_04 AC 119 ms
77,312 KB
testcase_05 AC 120 ms
77,140 KB
testcase_06 AC 117 ms
77,540 KB
testcase_07 AC 102 ms
77,084 KB
testcase_08 AC 104 ms
77,400 KB
testcase_09 AC 118 ms
77,340 KB
testcase_10 AC 37 ms
52,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
write=sys.stdout.write

T=int(input())
Ans=[""]*T
for t in range(T):
    H,W,D=map(int,input().split())

    if H%2:
        a=W*W+1
    else:
        a=W*W

    if W%2:
        b=H*H+1
    else:
        b=H*H

    Ans[t]="N" if min(a,b)<=D*D else "S"

write("\n".join(map(str,Ans)))
0