結果

問題 No.202 1円玉投げ
ユーザー nebukuro09nebukuro09
提出日時 2016-10-04 13:17:22
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 332 bytes
コンパイル時間 916 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-12-22 10:32:27
合計ジャッジ時間 141,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 13 ms
15,488 KB
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 318 ms
15,616 KB
testcase_23 AC 307 ms
12,032 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 308 ms
6,400 KB
testcase_27 AC 306 ms
6,528 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 305 ms
6,528 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 308 ms
6,656 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 84 ms
6,272 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
s = set()
ans = 0
shuuhen = [(i, j) for i in xrange(-20, 21) for j in xrange(-20, 21) if i*i+j*j<400]
for i in xrange(N):
    x, y = map(int, raw_input().split())
    for j, k in shuuhen:
        if (x+j, y+k) in s:
            print x+j, y+k
            break
    else:
        s.add((x, y))
        ans += 1
print ans
0