結果

問題 No.1801 Segment Game
ユーザー FromBooskaFromBooska
提出日時 2024-03-18 14:49:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,860 KB
最終ジャッジ日時 2024-09-30 04:57:10
合計ジャッジ時間 5,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,880 KB
testcase_01 AC 369 ms
76,848 KB
testcase_02 AC 374 ms
77,140 KB
testcase_03 AC 369 ms
77,452 KB
testcase_04 AC 385 ms
77,860 KB
testcase_05 AC 373 ms
76,928 KB
testcase_06 AC 372 ms
77,248 KB
testcase_07 AC 332 ms
76,788 KB
testcase_08 AC 292 ms
76,656 KB
testcase_09 AC 328 ms
77,176 KB
testcase_10 AC 36 ms
53,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 取れるなら先手は対角線を取る、あとは同じ個数なので先手が勝つ
# 先手が対角線を取れない場合、後手が勝つ、D1以上なので先手が一手もできないことはない
# いや、対角線でなくていい、中心を通る線の最短のもの

T = int(input())
for t in range(T):
    H, W, D = map(int, input().split())
    ans = 'S'
    shortest_squared = H**2+W**2
    if H%2 == 0:
        shortest_squared = min(shortest_squared, W**2)
    else:
        shortest_squared = min(shortest_squared, 1**2+W**2)
    if W%2 == 0:
        shortest_squared = min(shortest_squared, H**2)
    else:
        shortest_squared = min(shortest_squared, 1**2+H**2)
    if shortest_squared<=D**2:
        ans = 'N'
    print(ans)
0