結果
問題 | No.1398 調和の魔法陣 (構築) |
ユーザー | ytoki28 |
提出日時 | 2021-02-19 22:55:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,946 bytes |
コンパイル時間 | 139 ms |
コンパイル使用メモリ | 13,184 KB |
実行使用メモリ | 47,140 KB |
最終ジャッジ日時 | 2024-09-16 21:38:30 |
合計ジャッジ時間 | 38,703 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 442 ms
43,564 KB |
testcase_01 | WA | - |
testcase_02 | AC | 465 ms
43,820 KB |
testcase_03 | AC | 442 ms
43,812 KB |
testcase_04 | AC | 443 ms
43,820 KB |
testcase_05 | AC | 463 ms
44,072 KB |
testcase_06 | AC | 539 ms
45,744 KB |
testcase_07 | AC | 456 ms
43,660 KB |
testcase_08 | AC | 533 ms
45,876 KB |
testcase_09 | AC | 541 ms
46,376 KB |
testcase_10 | AC | 440 ms
43,820 KB |
testcase_11 | AC | 540 ms
45,864 KB |
testcase_12 | AC | 467 ms
43,700 KB |
testcase_13 | AC | 528 ms
45,892 KB |
testcase_14 | AC | 541 ms
45,988 KB |
testcase_15 | AC | 459 ms
44,076 KB |
testcase_16 | AC | 539 ms
46,188 KB |
testcase_17 | AC | 537 ms
45,868 KB |
testcase_18 | AC | 535 ms
46,500 KB |
testcase_19 | AC | 553 ms
46,888 KB |
testcase_20 | AC | 442 ms
43,916 KB |
testcase_21 | AC | 539 ms
45,860 KB |
testcase_22 | AC | 535 ms
45,480 KB |
testcase_23 | AC | 455 ms
43,916 KB |
testcase_24 | AC | 559 ms
45,744 KB |
testcase_25 | AC | 449 ms
44,128 KB |
testcase_26 | AC | 542 ms
45,608 KB |
testcase_27 | AC | 541 ms
47,140 KB |
testcase_28 | AC | 440 ms
44,336 KB |
testcase_29 | AC | 553 ms
46,016 KB |
testcase_30 | AC | 441 ms
43,792 KB |
ソースコード
import sys import numpy as np readline = sys.stdin.readline read = sys.stdin.read w, h, x = map(int, readline().split()) if w == 1: if x <= 9: ans = np.zeros(h, dtype=np.int64) ans[::2] = x print('\n'.join(map(str, ans.tolist()))) sys.exit() if x <= 18 and h % 3 == 2: ans = np.zeros(h, dtype=np.int64) ans[::3] = 9 ans[1::3] = x-9 print('\n'.join(map(str, ans.tolist()))) sys.exit() print(-1) sys.exit() if h == 1: if x <= 9: ans = np.zeros(w, dtype=np.int64) ans[::2] = x print(''.join(map(str, ans.tolist()))) sys.exit() if x <= 18 and w % 3 == 2: ans = np.zeros(w, dtype=np.int64) ans[::3] = 9 ans[1::3] = x-9 print(''.join(map(str, ans.tolist()))) sys.exit() print(-1) sys.exit() if w == 2: if x <= 18: ans = np.zeros((h,w), dtype=np.int64) ans[::2,0] = min(x,9) ans[::2,1] = x - min(x,9) ans = ans.tolist() for l in ans: print(''.join(map(str, l))) sys.exit() if x <= 36 and h % 3 == 2: ans = np.zeros((h,w), dtype=np.int64) ans[::3] = 9 ans[1::3,0] = min(x-18,9) ans[1::3,1] = x - 18 - min(x-18,9) for l in ans: print(''.join(map(str, l))) sys.exit() print(-1) sys.exit() if h == 2: if x <= 18: ans = np.zeros((h,w), dtype=np.int64) ans[0,::2] = min(x,9) ans[1,::2] = x - min(x,9) ans = ans.tolist() for l in ans: print(''.join(map(str, l))) sys.exit() if x <= 36 and w % 3 == 2: ans = np.zeros((h,w), dtype=np.int64) ans[:,::3] = 9 ans[0,1::3] = min(x-18,9) ans[1,1::3] = x - 18 - min(x-18,9) for l in ans: print(''.join(map(str, l))) sys.exit() print(-1) sys.exit() if x <= 9: ans = np.zeros((h,w), dtype=np.int64) f = [1,0,0] ans[f[h%3]::3,f[w%3]::3] = x for l in ans: print(''.join(map(str, l))) sys.exit() if x <= 18: if w % 3 == 2: ans = np.zeros((h,w), dtype=np.int64) f = [1,0,0] ans[f[h%3]::3,::3] = 9 ans[f[h%3]::3,1::3] = x - 9 for l in ans: print(''.join(map(str, l))) sys.exit() if h % 3 == 2: ans = np.zeros((h,w), dtype=np.int64) f = [1,0,0] ans[::3,f[w%3]::3] = 9 ans[1::3,f[w%3]::3] = x - 9 for l in ans: print(''.join(map(str, l))) sys.exit() if x <= 36 and h % 3 == 2 and w % 3 == 2: ans = np.zeros((h,w), dtype=np.int64) if x <= 27: a = np.array([[9,9,0],[x-18,0,0],[0,0,0]], dtype=np.int64) else: a = np.array([[9,9,0],[9,x-27,0],[0,0,0]], dtype=np.int64) ans = np.tile(a,((h+1)//3,(w+1)//3))[:-1,:-1] for l in ans: print(''.join(map(str, l))) sys.exit() print(-1)