結果

問題 No.455 冬の大三角
ユーザー maspymaspy
提出日時 2020-01-07 21:44:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,616 KB
最終ジャッジ日時 2024-11-23 01:13:21
合計ジャッジ時間 34,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
44,484 KB
testcase_01 AC 531 ms
44,348 KB
testcase_02 AC 525 ms
44,228 KB
testcase_03 AC 521 ms
44,484 KB
testcase_04 AC 517 ms
44,356 KB
testcase_05 AC 525 ms
43,876 KB
testcase_06 AC 525 ms
44,100 KB
testcase_07 AC 532 ms
44,228 KB
testcase_08 AC 530 ms
44,476 KB
testcase_09 AC 524 ms
44,224 KB
testcase_10 AC 527 ms
43,832 KB
testcase_11 AC 522 ms
44,368 KB
testcase_12 AC 532 ms
44,608 KB
testcase_13 AC 531 ms
44,480 KB
testcase_14 AC 546 ms
44,228 KB
testcase_15 AC 529 ms
43,936 KB
testcase_16 AC 525 ms
44,108 KB
testcase_17 AC 533 ms
44,356 KB
testcase_18 AC 537 ms
44,360 KB
testcase_19 AC 542 ms
44,348 KB
testcase_20 AC 539 ms
44,484 KB
testcase_21 AC 544 ms
44,360 KB
testcase_22 AC 537 ms
44,480 KB
testcase_23 AC 525 ms
44,224 KB
testcase_24 AC 542 ms
44,352 KB
testcase_25 AC 539 ms
44,352 KB
testcase_26 AC 524 ms
44,232 KB
testcase_27 AC 526 ms
44,480 KB
testcase_28 AC 522 ms
44,220 KB
testcase_29 AC 528 ms
44,480 KB
testcase_30 AC 531 ms
44,100 KB
testcase_31 AC 526 ms
44,232 KB
testcase_32 AC 531 ms
44,476 KB
testcase_33 AC 525 ms
43,840 KB
testcase_34 AC 522 ms
44,236 KB
testcase_35 AC 555 ms
44,228 KB
testcase_36 AC 555 ms
43,716 KB
testcase_37 AC 526 ms
43,844 KB
testcase_38 AC 538 ms
44,480 KB
testcase_39 AC 550 ms
44,604 KB
testcase_40 AC 566 ms
44,096 KB
testcase_41 AC 532 ms
43,980 KB
testcase_42 AC 528 ms
43,848 KB
testcase_43 AC 544 ms
44,108 KB
testcase_44 AC 540 ms
43,836 KB
testcase_45 AC 524 ms
44,360 KB
testcase_46 AC 523 ms
44,612 KB
testcase_47 AC 525 ms
44,356 KB
testcase_48 AC 536 ms
44,476 KB
testcase_49 AC 524 ms
44,104 KB
testcase_50 AC 528 ms
44,360 KB
testcase_51 AC 529 ms
44,616 KB
testcase_52 AC 531 ms
44,360 KB
testcase_53 AC 534 ms
44,360 KB
testcase_54 AC 535 ms
44,232 KB
testcase_55 AC 548 ms
43,972 KB
testcase_56 AC 529 ms
44,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np
import random

H,W = map(int,readline().split())
S = np.frombuffer(read(),'S1').reshape(H,-1)[:,:W].astype(str)

X,Y = np.where(S == '*')

def test(x,y):
    x0,x1 = X-x
    y0,y1 = Y-y
    return x0 * y1 != y0 * x1

while True:
    x = random.randint(0,H-1)
    y = random.randint(0,W-1)
    if test(x,y):
        break

S[x][y] = '*'

print('\n'.join(''.join(row) for row in S))
0