結果

問題 No.1988 Divisor Tiling
ユーザー nikumakarenikumakare
提出日時 2022-06-24 21:33:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-11-08 17:26:58
合計ジャッジ時間 5,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 41 ms
52,608 KB
testcase_09 AC 44 ms
52,864 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 44 ms
52,736 KB
testcase_17 AC 43 ms
52,608 KB
testcase_18 AC 53 ms
62,720 KB
testcase_19 AC 55 ms
62,464 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 69 ms
69,504 KB
testcase_31 AC 55 ms
63,104 KB
testcase_32 AC 40 ms
51,840 KB
testcase_33 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,h=map(int,input().split())
D=[]
for i in range(1,n):
    if n%i==0:
        D.append(i)

if h==1:
    P=[]
    for num in D:
        P.extend([num]*num)
    print(*P)

elif h==2:
    P=[]
    for num in D[:-1]:
        P.extend([num]*num)
    print(*P)
    print(*[D[-1]]*D[-1])

elif h==n//2:
    P=[]
    for num in D[:-1]:
        P.extend([num]*num)
    for num in P:
        print(num,D[-1])

elif h==n:
    P=[]
    for num in D:
        P.extend([num]*num)
    for num in P:
        print(num)

else:
    print(-1)
0