結果
問題 | No.202 1円玉投げ |
ユーザー | tktk_snsn |
提出日時 | 2021-03-16 00:05:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 588 bytes |
コンパイル時間 | 358 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 137,600 KB |
最終ジャッジ日時 | 2024-12-22 12:08:29 |
合計ジャッジ時間 | 10,509 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 210 ms
129,920 KB |
testcase_01 | AC | 283 ms
136,448 KB |
testcase_02 | AC | 109 ms
112,968 KB |
testcase_03 | AC | 111 ms
113,024 KB |
testcase_04 | AC | 112 ms
112,512 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 | 336 ms
131,456 KB |
testcase_17 | AC | 330 ms
130,944 KB |
testcase_18 | AC | 334 ms
131,072 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 129 ms
112,000 KB |
testcase_23 | AC | 122 ms
112,000 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 133 ms
112,256 KB |
testcase_27 | AC | 123 ms
111,744 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 126 ms
112,000 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 126 ms
112,128 KB |
testcase_35 | AC | 348 ms
130,816 KB |
testcase_36 | AC | 224 ms
129,280 KB |
testcase_37 | WA | - |
testcase_38 | AC | 223 ms
129,024 KB |
testcase_39 | AC | 127 ms
113,280 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)