結果
| 問題 |
No.202 1円玉投げ
|
| コンテスト | |
| ユーザー |
noko2250
|
| 提出日時 | 2015-05-03 23:41:47 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 357 bytes |
| コンパイル時間 | 547 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 22,784 KB |
| 最終ジャッジ日時 | 2024-12-22 06:21:56 |
| 合計ジャッジ時間 | 147,666 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 TLE * 23 |
ソースコード
def main():
n = int(input())
L = []
for i in range(n):
x, y = map(int, input().split())
flag = True
for l in L:
if abs(x-l[0])**2 + abs(y-l[1])**2 < 400:
flag = False
break
if flag:
L.append([x, y])
print(len(L))
if __name__ == '__main__':
main()
noko2250