結果

問題 No.1801 Segment Game
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-03-31 15:34:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 564 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-04-28 11:00:14
合計ジャッジ時間 6,805 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 563 ms
30,464 KB
testcase_02 AC 549 ms
30,336 KB
testcase_03 AC 552 ms
30,336 KB
testcase_04 AC 551 ms
30,336 KB
testcase_05 AC 550 ms
30,464 KB
testcase_06 AC 558 ms
30,464 KB
testcase_07 AC 564 ms
30,208 KB
testcase_08 AC 543 ms
30,464 KB
testcase_09 AC 543 ms
30,464 KB
testcase_10 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
hwd=[]
for _ in range(t):
    h,w,d=map(int,input().split())
    hwd.append([h,w,d])
# 対称攻めが可能な方が勝ち
# 先手が長方形の中心を通る線分を引けるか? 引けるなら先手勝ちで、それ以外は後手勝ち
# 長方形の周上から周上へ延びる線分で中心を通るものの内、最も短い線分がD以下なら先手勝ち
for h,w,d in hwd:
    tate=h**2 if w%2==0 else h**2+1
    yoko=w**2 if h%2==0 else w**2+1
    if min(tate,yoko)<=d**2:
        print("N")
    else:
        print("S")


0