結果

問題 No.202 1円玉投げ
ユーザー ohara_nohara_n
提出日時 2020-01-21 20:22:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 346 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-12-22 11:47:38
合計ジャッジ時間 148,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 33 ms
22,016 KB
testcase_03 AC 32 ms
16,000 KB
testcase_04 AC 31 ms
21,888 KB
testcase_05 TLE -
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 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 199 ms
22,016 KB
testcase_23 AC 200 ms
22,272 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 200 ms
10,624 KB
testcase_27 AC 202 ms
10,752 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 250 ms
10,752 KB
testcase_31 AC 35 ms
10,496 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 237 ms
10,880 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 43 ms
10,752 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(map(int,input().split()))
floor = []
floor.append(s)
for _ in range(n-1):
    x,y = map(int,input().split())
    flag = False
    for item in floor:
        if (x-item[0])**2 +(y-item[1])**2 >=400:
            flag = True
        else:
            break
    if flag == True:
        floor.append([x,y])
print(len(floor))
0