結果

問題 No.1801 Segment Game
ユーザー hir355hir355
提出日時 2022-01-07 22:00:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 77,848 KB
最終ジャッジ日時 2024-11-14 11:48:40
合計ジャッジ時間 4,741 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,140 KB
testcase_01 AC 371 ms
77,060 KB
testcase_02 AC 362 ms
77,576 KB
testcase_03 AC 364 ms
77,652 KB
testcase_04 AC 359 ms
77,820 KB
testcase_05 AC 358 ms
77,328 KB
testcase_06 AC 353 ms
77,072 KB
testcase_07 AC 327 ms
77,084 KB
testcase_08 AC 329 ms
77,124 KB
testcase_09 AC 369 ms
77,848 KB
testcase_10 AC 39 ms
52,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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