結果

問題 No.1130 Grid Numbers
ユーザー pypypymi
提出日時 2022-02-18 15:20:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 53,888 KB
最終ジャッジ日時 2024-06-29 08:04:33
合計ジャッジ時間 1,242 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
from collections import Counter
result = []
for i in range(h):
    result += list(map(int,input().split()))
result = dict(sorted(Counter(result).items()))
result2 = []
for key,value in result.items():
    result2+=[int(key)]*value
result3 = []    
for i in range(0,h*w,w):
    print(*result2[i:i+w])
    
0