結果

問題 No.1801 Segment Game
ユーザー rlangevinrlangevin
提出日時 2023-02-13 08:49:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 77,108 KB
最終ジャッジ日時 2024-07-16 09:08:16
合計ジャッジ時間 4,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,408 KB
testcase_01 AC 290 ms
76,500 KB
testcase_02 AC 323 ms
76,120 KB
testcase_03 AC 287 ms
76,656 KB
testcase_04 AC 290 ms
76,464 KB
testcase_05 AC 302 ms
76,644 KB
testcase_06 AC 290 ms
76,368 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 289 ms
76,508 KB
testcase_10 AC 36 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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