結果
問題 | No.1801 Segment Game |
ユーザー | ntuda |
提出日時 | 2022-03-16 22:53:13 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 426 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 82,444 KB |
実行使用メモリ | 77,356 KB |
最終ジャッジ日時 | 2024-09-25 01:52:54 |
合計ジャッジ時間 | 4,636 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
53,052 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 37 ms
52,608 KB |
ソースコード
T = int(input()) for i in range(T): H,W,D = map(int,input().split()) D2 = D * D ans = 1 if H & 1 and W & 1: if min(H*H+1,W*W+1) <= D*D: ans = 0 elif H & 1 and not(W & 1): if min(H*H+1,W) <= D2: ans = 0 elif not(H & 1) and W & 1: if min(H,W*W+1) <= D2: ans = 0 else: if min(H,W) <= D2: ans = 0 print(["N","S"][ans])