結果

問題 No.991 N×Mマス計算(構築)
ユーザー maspymaspy
提出日時 2020-04-23 16:14:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,420 KB
最終ジャッジ日時 2024-10-13 15:50:54
合計ジャッジ時間 18,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
46,156 KB
testcase_01 AC 521 ms
45,968 KB
testcase_02 AC 516 ms
46,028 KB
testcase_03 AC 523 ms
45,644 KB
testcase_04 AC 514 ms
46,032 KB
testcase_05 AC 531 ms
46,032 KB
testcase_06 AC 521 ms
46,028 KB
testcase_07 AC 524 ms
46,288 KB
testcase_08 AC 521 ms
46,420 KB
testcase_09 AC 525 ms
46,324 KB
testcase_10 AC 525 ms
46,156 KB
testcase_11 AC 518 ms
46,412 KB
testcase_12 AC 515 ms
46,284 KB
testcase_13 AC 517 ms
46,032 KB
testcase_14 AC 522 ms
45,644 KB
testcase_15 AC 516 ms
46,024 KB
testcase_16 AC 524 ms
45,908 KB
testcase_17 AC 519 ms
46,284 KB
testcase_18 AC 513 ms
46,028 KB
testcase_19 AC 510 ms
46,156 KB
testcase_20 AC 508 ms
46,028 KB
testcase_21 AC 517 ms
45,648 KB
testcase_22 AC 522 ms
45,648 KB
testcase_23 AC 526 ms
46,024 KB
testcase_24 AC 516 ms
46,280 KB
testcase_25 AC 525 ms
46,160 KB
testcase_26 AC 508 ms
46,032 KB
testcase_27 AC 513 ms
45,520 KB
testcase_28 AC 529 ms
46,292 KB
testcase_29 AC 514 ms
45,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

X = int(read())

N = 10 ** 5
K = 10 ** 9

full = X + (-X) % N
if full == 0:
    full += N
M = full // N

col = np.empty(M, np.int64)
row = np.empty(N, np.int64)
col[0] = 1
col[1:] = K
row[: full - X] = 1
row[full - X:] = K
row[0] = 0
row[0] = (X - row.sum()) % K
if row[0] == 0:
    row[0] = K - 1
    row[1] += 1

print(N, M, K)
print('*', *col)
print(*row, sep='\n')
0