結果
問題 | No.1801 Segment Game |
ユーザー | puzneko |
提出日時 | 2022-01-14 22:57:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 202 ms / 2,000 ms |
コード長 | 406 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 132,248 KB |
最終ジャッジ日時 | 2024-11-20 13:34:16 |
合計ジャッジ時間 | 3,851 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,012 KB |
testcase_01 | AC | 186 ms
131,800 KB |
testcase_02 | AC | 185 ms
131,996 KB |
testcase_03 | AC | 184 ms
132,036 KB |
testcase_04 | AC | 185 ms
132,180 KB |
testcase_05 | AC | 184 ms
132,248 KB |
testcase_06 | AC | 184 ms
132,176 KB |
testcase_07 | AC | 194 ms
131,936 KB |
testcase_08 | AC | 202 ms
132,076 KB |
testcase_09 | AC | 192 ms
132,044 KB |
testcase_10 | AC | 40 ms
52,884 KB |
ソースコード
from sys import stdin t, *indata = map(int, stdin.read().split()) offset = 0 for i in range(t): h, w, d = indata[offset + 3*i],indata[offset + 3*i+1],indata[offset + 3*i+2] if h * h + 1 <= d * d: print("N") elif w * w + 1 <= d * d: print("N") elif (h % 2 == 0) & (w <= d): print("N") elif (w % 2 == 0) & (h <= d): print("N") else: print("S")