結果

問題 No.1801 Segment Game
ユーザー NatsubiSoganNatsubiSogan
提出日時 2022-01-04 12:20:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 78,040 KB
最終ジャッジ日時 2024-11-14 11:44:59
合計ジャッジ時間 4,664 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,828 KB
testcase_01 AC 378 ms
77,796 KB
testcase_02 AC 384 ms
77,808 KB
testcase_03 AC 378 ms
77,940 KB
testcase_04 AC 386 ms
78,040 KB
testcase_05 AC 379 ms
77,412 KB
testcase_06 AC 380 ms
78,000 KB
testcase_07 AC 348 ms
77,056 KB
testcase_08 AC 338 ms
77,240 KB
testcase_09 AC 382 ms
77,768 KB
testcase_10 AC 36 ms
52,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    h, w, d = map(int, input().split())
    if h % 2 == 0 and w % 2 == 0: d_min = min(h ** 2, w ** 2)
    if h % 2 == 0 and w % 2 == 1: d_min = min(h ** 2 + 1, w ** 2)
    if h % 2 == 1 and w % 2 == 0: d_min = min(h ** 2, w ** 2 + 1)
    if h % 2 == 1 and w % 2 == 1: d_min = min(h ** 2 + 1, w ** 2 + 1)
    print("N" if d_min <= d ** 2 else "S")
0