結果
問題 | No.565 回転拡大 |
ユーザー | yumechi |
提出日時 | 2017-09-09 01:14:13 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 617 bytes |
コンパイル時間 | 379 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 60,032 KB |
最終ジャッジ日時 | 2024-11-07 12:39:24 |
合計ジャッジ時間 | 2,893 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 47 ms
57,856 KB |
testcase_02 | WA | - |
testcase_03 | AC | 43 ms
52,352 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 49 ms
58,368 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 49 ms
59,520 KB |
testcase_13 | WA | - |
testcase_14 | AC | 43 ms
52,224 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 42 ms
52,352 KB |
testcase_24 | WA | - |
testcase_25 | AC | 47 ms
58,112 KB |
testcase_26 | WA | - |
testcase_27 | AC | 48 ms
58,240 KB |
testcase_28 | WA | - |
testcase_29 | AC | 42 ms
52,224 KB |
testcase_30 | AC | 42 ms
51,968 KB |
testcase_31 | AC | 42 ms
52,096 KB |
testcase_32 | AC | 42 ms
51,968 KB |
ソースコード
def solve(): r, k = map(int, input().split()) h, w = map(int, input().split()) cl = [[i for i in list(input())] for _ in range(h)] for _ in range(r//90): nl = [["_" for _ in range(h)] for _ in range(w)] for i in range(w): for j in range(h): nl[w-1-i][h-1-j] = cl[h-1-j][w-1-i] cl = nl w, h = h, w ans = [["." for _ in range(w * k)] for _ in range(h * k)] for i in range(h * k): for j in range(w * k): ans[i][j] = cl[i//k][j//k] print("\n".join(["".join(a) for a in ans])) if __name__=="__main__": solve()