結果

問題 No.1801 Segment Game
ユーザー rlangevinrlangevin
提出日時 2023-02-13 12:35:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 76,964 KB
最終ジャッジ日時 2024-07-16 09:57:59
合計ジャッジ時間 4,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,492 KB
testcase_01 AC 304 ms
76,556 KB
testcase_02 AC 308 ms
76,964 KB
testcase_03 AC 303 ms
76,560 KB
testcase_04 AC 300 ms
76,496 KB
testcase_05 AC 307 ms
76,508 KB
testcase_06 AC 304 ms
76,648 KB
testcase_07 AC 313 ms
76,564 KB
testcase_08 AC 317 ms
76,696 KB
testcase_09 AC 320 ms
76,868 KB
testcase_10 AC 39 ms
52,608 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 + (W%2) ** 2:
        print("N")
    else:
        print("S")
0