結果

問題 No.1801 Segment Game
ユーザー ytftytft
提出日時 2022-02-14 21:10:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-06-29 06:55:03
合計ジャッジ時間 4,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 274 ms
76,160 KB
testcase_02 AC 273 ms
76,288 KB
testcase_03 AC 263 ms
76,560 KB
testcase_04 AC 263 ms
76,416 KB
testcase_05 AC 271 ms
76,476 KB
testcase_06 AC 265 ms
76,496 KB
testcase_07 AC 271 ms
76,544 KB
testcase_08 AC 313 ms
76,800 KB
testcase_09 AC 282 ms
76,564 KB
testcase_10 AC 32 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
	H,W,D=map(int,input().split())
	if H**2+(W%2)**2<=D**2 or W**2+(H%2)**2<=D**2:
		print("N")
	else:
		print("S")
0