結果

問題 No.455 冬の大三角
ユーザー amowweeamowwee
提出日時 2016-12-06 21:32:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 1,247 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,784 KB
最終ジャッジ日時 2024-11-28 03:15:44
合計ジャッジ時間 35,429 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 565 ms
44,140 KB
testcase_01 AC 530 ms
44,400 KB
testcase_02 AC 539 ms
44,780 KB
testcase_03 AC 557 ms
44,524 KB
testcase_04 AC 529 ms
44,652 KB
testcase_05 AC 534 ms
44,528 KB
testcase_06 AC 532 ms
44,404 KB
testcase_07 AC 533 ms
44,664 KB
testcase_08 AC 551 ms
44,272 KB
testcase_09 AC 527 ms
44,392 KB
testcase_10 AC 534 ms
44,408 KB
testcase_11 AC 536 ms
44,176 KB
testcase_12 AC 533 ms
44,408 KB
testcase_13 AC 544 ms
44,404 KB
testcase_14 AC 536 ms
44,396 KB
testcase_15 AC 575 ms
44,388 KB
testcase_16 AC 527 ms
44,268 KB
testcase_17 AC 537 ms
44,400 KB
testcase_18 AC 556 ms
44,660 KB
testcase_19 AC 543 ms
44,136 KB
testcase_20 AC 536 ms
44,652 KB
testcase_21 AC 529 ms
44,528 KB
testcase_22 AC 526 ms
44,264 KB
testcase_23 AC 526 ms
44,532 KB
testcase_24 AC 543 ms
44,272 KB
testcase_25 AC 527 ms
44,524 KB
testcase_26 AC 529 ms
44,776 KB
testcase_27 AC 530 ms
44,652 KB
testcase_28 AC 525 ms
44,524 KB
testcase_29 AC 542 ms
44,140 KB
testcase_30 AC 529 ms
44,528 KB
testcase_31 AC 533 ms
44,136 KB
testcase_32 AC 539 ms
44,148 KB
testcase_33 AC 533 ms
44,524 KB
testcase_34 AC 537 ms
44,400 KB
testcase_35 AC 534 ms
44,528 KB
testcase_36 AC 531 ms
44,152 KB
testcase_37 AC 531 ms
44,020 KB
testcase_38 AC 531 ms
44,532 KB
testcase_39 AC 528 ms
44,532 KB
testcase_40 AC 548 ms
44,692 KB
testcase_41 AC 534 ms
44,532 KB
testcase_42 AC 533 ms
44,392 KB
testcase_43 AC 540 ms
44,144 KB
testcase_44 AC 535 ms
44,524 KB
testcase_45 AC 549 ms
44,784 KB
testcase_46 AC 535 ms
44,144 KB
testcase_47 AC 555 ms
44,524 KB
testcase_48 AC 529 ms
44,524 KB
testcase_49 AC 536 ms
44,392 KB
testcase_50 AC 569 ms
44,400 KB
testcase_51 AC 551 ms
44,524 KB
testcase_52 AC 524 ms
44,396 KB
testcase_53 AC 531 ms
44,272 KB
testcase_54 AC 534 ms
44,528 KB
testcase_55 AC 532 ms
44,136 KB
testcase_56 AC 553 ms
44,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
import numpy as np

# Sieve of Eratosthenes
def sieve(a,b):
    if(abs(a)<abs(b)):
        temp = a
        a = b
        b = temp
    
    while(b):
        temp = a
        a = b
        b = temp%b
        
    return abs(int(a))

H,W = map(int,input().split())

# get 2 stars position
starPos = []
for row in range(H):
    col = [i for i, char in enumerate(input()) if char == "*"] 
    while(col):
        starPos.append(np.array((col.pop(), row), dtype=int))
    if(len(starPos) == 2):
        break


# star1 -> star2 vector
vec = starPos[1] - starPos[0]

div = sieve(vec[0],vec[1])
vec = vec / div

# enumerate lattice point on the star1--star2 line
lattice = []
p = starPos[0]
while(((W,H) > p).all() and ((0,0) <= p).all()):
    lattice.append(tuple(p))
    p = p + vec
p = starPos[0]
while(((W,H) > p).all() and ((0,0) <= p).all()):
    lattice.append(tuple(p))
    p = p - vec

# get 3rd star position
for thirdPos in [(x,y) for y in range(H) for x in range(W)]:
    if not thirdPos in lattice:
        starPos.append(thirdPos)
        break

# print result
sky = [["-" for w in range(W)] for h in range(H)]
for i in range(3):
    sky[starPos[i][1]][starPos[i][0]] = "*"
print("\n".join(["".join(s) for s in sky]), "\n")
0