結果

問題 No.1801 Segment Game
ユーザー AEnAEn
提出日時 2022-12-27 16:18:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-11-22 01:59:38
合計ジャッジ時間 4,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 383 ms
76,928 KB
testcase_02 AC 381 ms
77,696 KB
testcase_03 AC 375 ms
77,056 KB
testcase_04 AC 374 ms
77,440 KB
testcase_05 AC 368 ms
77,184 KB
testcase_06 AC 362 ms
77,056 KB
testcase_07 AC 343 ms
77,056 KB
testcase_08 AC 344 ms
77,056 KB
testcase_09 AC 395 ms
77,568 KB
testcase_10 AC 41 ms
51,968 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