結果

問題 No.1801 Segment Game
ユーザー prussian_coderprussian_coder
提出日時 2022-01-15 20:09:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 1,437 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 76,892 KB
最終ジャッジ日時 2024-11-22 00:04:22
合計ジャッジ時間 4,581 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,884 KB
testcase_01 AC 313 ms
76,028 KB
testcase_02 AC 310 ms
76,892 KB
testcase_03 AC 308 ms
76,272 KB
testcase_04 AC 302 ms
76,212 KB
testcase_05 AC 305 ms
76,476 KB
testcase_06 AC 302 ms
76,168 KB
testcase_07 AC 307 ms
76,360 KB
testcase_08 AC 304 ms
76,336 KB
testcase_09 AC 303 ms
76,348 KB
testcase_10 AC 39 ms
52,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
for _ in range(N):
    a,b,c=map(int,input().split())
    if min(a**2 + (b%2)**2,b**2 + (a%2)**2) <= c**2:
        print("N")
    else:
        print("S")
0