結果

問題 No.1801 Segment Game
ユーザー ntudantuda
提出日時 2022-03-16 23:31:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 77,896 KB
最終ジャッジ日時 2024-09-25 02:29:18
合計ジャッジ時間 4,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,688 KB
testcase_01 AC 345 ms
77,548 KB
testcase_02 AC 360 ms
77,804 KB
testcase_03 AC 354 ms
77,512 KB
testcase_04 AC 369 ms
77,896 KB
testcase_05 AC 363 ms
77,740 KB
testcase_06 AC 350 ms
77,680 KB
testcase_07 AC 314 ms
77,428 KB
testcase_08 AC 318 ms
77,260 KB
testcase_09 AC 363 ms
77,372 KB
testcase_10 AC 37 ms
51,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for t in range(T):
    H,W,D = map(int,input().split())
    ans = 1
    if H & 1:
        if W & 1:
            if min(H * H + 1, W * W + 1) <= D * D:
                ans = 0
        else:
            if min(H * H, W * W + 1) <= D * D:
                ans = 0
    else:
        if W & 1:
            if min(H * H + 1, W * W) <= D * D:
                ans = 0
        else:
            if min(H, W) <= D:
                ans = 0
    print(["N","S"][ans])
0