結果

問題 No.991 N×Mマス計算(構築)
ユーザー tanon710tanon710
提出日時 2020-02-21 02:32:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 12,508 KB
最終ジャッジ日時 2024-10-08 19:38:24
合計ジャッジ時間 6,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
12,184 KB
testcase_01 AC 117 ms
12,184 KB
testcase_02 AC 119 ms
12,416 KB
testcase_03 AC 118 ms
12,064 KB
testcase_04 AC 119 ms
12,320 KB
testcase_05 AC 124 ms
12,508 KB
testcase_06 AC 115 ms
12,180 KB
testcase_07 AC 113 ms
12,196 KB
testcase_08 AC 112 ms
12,056 KB
testcase_09 AC 113 ms
12,056 KB
testcase_10 AC 112 ms
12,184 KB
testcase_11 AC 118 ms
12,236 KB
testcase_12 AC 116 ms
12,052 KB
testcase_13 AC 116 ms
12,244 KB
testcase_14 AC 111 ms
12,356 KB
testcase_15 AC 112 ms
12,312 KB
testcase_16 AC 114 ms
12,180 KB
testcase_17 AC 116 ms
12,304 KB
testcase_18 AC 119 ms
12,056 KB
testcase_19 AC 116 ms
12,308 KB
testcase_20 AC 115 ms
12,056 KB
testcase_21 AC 123 ms
12,052 KB
testcase_22 AC 119 ms
12,312 KB
testcase_23 AC 123 ms
12,192 KB
testcase_24 AC 114 ms
12,184 KB
testcase_25 AC 120 ms
12,040 KB
testcase_26 AC 113 ms
12,056 KB
testcase_27 AC 115 ms
12,308 KB
testcase_28 AC 124 ms
12,416 KB
testcase_29 AC 114 ms
12,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=int(input())
n=10**5
m=x//n+1
k=10**9
y=(x-(n-x%n-1))%k
op='*'
arr1=[op]+[k]*(x//n)+[1]
arr2=[k]*(x%n)+[1]*(n-x%n-1)+[y]
print(n,m,k)
print(*arr1)
for i in range(n):
    print(arr2[i])
0