結果

問題 No.1801 Segment Game
ユーザー AEnAEn
提出日時 2022-12-27 16:14:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 182 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 77,800 KB
最終ジャッジ日時 2024-05-01 19:44:40
合計ジャッジ時間 5,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 357 ms
77,056 KB
testcase_02 AC 406 ms
77,800 KB
testcase_03 AC 380 ms
77,056 KB
testcase_04 AC 361 ms
77,440 KB
testcase_05 AC 373 ms
76,928 KB
testcase_06 AC 356 ms
77,312 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 381 ms
77,720 KB
testcase_10 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for i in range(T):
    H, W, D = map(int, input().split())
    a = H*H+1 if H%2==1 else H*H
    b = W*W+1 if W%2==1 else W*W
    print('N' if D*D>=min(a,b) else 'S')
0