結果

問題 No.991 N×Mマス計算(構築)
ユーザー vwxyzvwxyz
提出日時 2024-06-19 23:40:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 12,208 KB
最終ジャッジ日時 2024-06-19 23:40:06
合計ジャッジ時間 4,237 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
11,952 KB
testcase_01 AC 49 ms
12,076 KB
testcase_02 AC 50 ms
11,940 KB
testcase_03 AC 49 ms
11,968 KB
testcase_04 AC 48 ms
11,976 KB
testcase_05 AC 60 ms
12,192 KB
testcase_06 AC 49 ms
12,092 KB
testcase_07 AC 50 ms
12,100 KB
testcase_08 AC 49 ms
12,080 KB
testcase_09 AC 49 ms
12,076 KB
testcase_10 AC 46 ms
12,208 KB
testcase_11 AC 47 ms
11,872 KB
testcase_12 AC 50 ms
11,968 KB
testcase_13 AC 55 ms
12,080 KB
testcase_14 AC 48 ms
11,996 KB
testcase_15 AC 47 ms
11,964 KB
testcase_16 AC 47 ms
11,936 KB
testcase_17 AC 48 ms
11,860 KB
testcase_18 AC 46 ms
11,904 KB
testcase_19 AC 49 ms
11,952 KB
testcase_20 AC 47 ms
11,960 KB
testcase_21 AC 48 ms
12,092 KB
testcase_22 AC 49 ms
11,900 KB
testcase_23 AC 58 ms
12,192 KB
testcase_24 AC 48 ms
12,080 KB
testcase_25 AC 51 ms
11,968 KB
testcase_26 AC 52 ms
12,204 KB
testcase_27 AC 49 ms
11,896 KB
testcase_28 AC 62 ms
12,068 KB
testcase_29 AC 51 ms
11,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X=int(input())
N=4*10**4
M=X//N+1
K=10**9
print(N,M,K)
A=[K]*(M-1)+[1]
B=[K]*(X%N)+[1]*(N-X%N-1)+[(X-N+X%N+1)%K]
print("*",*A)
print(*B,sep="\n")
0