結果

問題 No.202 1円玉投げ
ユーザー rlangevinrlangevin
提出日時 2023-10-25 12:22:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,898 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 82,616 KB
最終ジャッジ日時 2024-09-27 11:29:28
合計ジャッジ時間 50,731 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,832 ms
80,704 KB
testcase_01 AC 3,865 ms
82,540 KB
testcase_02 AC 49 ms
63,420 KB
testcase_03 AC 48 ms
63,420 KB
testcase_04 AC 50 ms
63,348 KB
testcase_05 AC 188 ms
74,804 KB
testcase_06 AC 3,107 ms
82,564 KB
testcase_07 AC 3,566 ms
82,220 KB
testcase_08 AC 3,607 ms
82,440 KB
testcase_09 AC 1,786 ms
81,644 KB
testcase_10 AC 657 ms
81,324 KB
testcase_11 AC 1,410 ms
81,212 KB
testcase_12 AC 1,448 ms
81,704 KB
testcase_13 AC 735 ms
81,232 KB
testcase_14 AC 213 ms
76,056 KB
testcase_15 AC 1,712 ms
81,308 KB
testcase_16 AC 1,792 ms
80,732 KB
testcase_17 AC 1,990 ms
80,596 KB
testcase_18 AC 1,969 ms
80,760 KB
testcase_19 AC 1,587 ms
81,300 KB
testcase_20 AC 2,780 ms
82,504 KB
testcase_21 AC 1,578 ms
81,232 KB
testcase_22 AC 71 ms
69,184 KB
testcase_23 AC 76 ms
70,608 KB
testcase_24 AC 60 ms
65,704 KB
testcase_25 AC 71 ms
66,324 KB
testcase_26 AC 69 ms
65,348 KB
testcase_27 AC 70 ms
66,756 KB
testcase_28 AC 61 ms
65,400 KB
testcase_29 AC 61 ms
66,440 KB
testcase_30 AC 77 ms
69,968 KB
testcase_31 AC 62 ms
65,836 KB
testcase_32 AC 78 ms
69,476 KB
testcase_33 AC 73 ms
67,448 KB
testcase_34 AC 75 ms
66,248 KB
testcase_35 AC 1,819 ms
80,508 KB
testcase_36 AC 1,993 ms
81,560 KB
testcase_37 AC 3,898 ms
82,616 KB
testcase_38 AC 1,685 ms
80,300 KB
testcase_39 AC 59 ms
67,520 KB
testcase_40 AC 56 ms
65,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
XY = []
for x in range(-20, 21):
    for y in range(-20, 21):
        if x ** 2 + y ** 2 < 400:
            XY.append((x, y))

D = defaultdict(set)
ans = 0
for i in range(N):
    X, Y = map(int, input().split())
    for x, y in XY:
        if Y + y in D[X + x]:
            break
    else:
        D[X].add(Y)
        ans += 1

print(ans)
0