結果
問題 | No.202 1円玉投げ |
ユーザー | tktk_snsn |
提出日時 | 2021-03-16 00:05:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 588 bytes |
コンパイル時間 | 476 ms |
コンパイル使用メモリ | 82,332 KB |
実行使用メモリ | 137,984 KB |
最終ジャッジ日時 | 2024-06-01 21:44:34 |
合計ジャッジ時間 | 9,012 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 167 ms
130,044 KB |
testcase_01 | AC | 238 ms
136,584 KB |
testcase_02 | AC | 94 ms
112,900 KB |
testcase_03 | AC | 90 ms
113,000 KB |
testcase_04 | AC | 92 ms
112,924 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 281 ms
131,480 KB |
testcase_17 | AC | 285 ms
131,220 KB |
testcase_18 | AC | 289 ms
131,236 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 113 ms
112,104 KB |
testcase_23 | AC | 110 ms
112,020 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 115 ms
112,216 KB |
testcase_27 | AC | 106 ms
111,968 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 111 ms
112,384 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 111 ms
111,976 KB |
testcase_35 | AC | 302 ms
131,304 KB |
testcase_36 | AC | 191 ms
129,524 KB |
testcase_37 | WA | - |
testcase_38 | AC | 176 ms
129,340 KB |
testcase_39 | AC | 100 ms
113,384 KB |
testcase_40 | WA | - |
ソースコード
import sys input = sys.stdin.buffer.readline sys.setrecursionlimit(10 ** 7) def touch(x, y, xx, yy): return (x - xx) ** 2 + (y - yy) ** 2 >= 20 * 20 N = int(input()) XY = tuple(tuple(map(int, input().split())) for _ in range(N)) ans = 0 B = [[set() for _ in range(1001)] for _ in range(1001)] for i, (x, y) in enumerate(XY): xx = x // 100 yy = y // 100 ok = True for l in range(-1, 2): for r in range(-1, 2): for xi, yi in B[l][r]: ok &= touch(x, y, xi, yi) if ok: ans += 1 B[xx][yy].add((x, y)) print(ans)