結果

問題 No.1801 Segment Game
ユーザー AEnAEn
提出日時 2022-12-27 16:18:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-05-01 19:47:43
合計ジャッジ時間 4,955 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 397 ms
76,800 KB
testcase_02 AC 426 ms
77,568 KB
testcase_03 AC 390 ms
77,184 KB
testcase_04 AC 393 ms
77,568 KB
testcase_05 AC 388 ms
77,056 KB
testcase_06 AC 387 ms
77,056 KB
testcase_07 AC 351 ms
77,312 KB
testcase_08 AC 350 ms
77,184 KB
testcase_09 AC 387 ms
77,440 KB
testcase_10 AC 41 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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