結果

問題 No.1169 Row and Column and Diagonal
ユーザー ntk-ta01ntk-ta01
提出日時 2020-08-14 23:35:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,524 KB
最終ジャッジ日時 2024-10-10 16:52:07
合計ジャッジ時間 2,121 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 41 ms
53,504 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 55 ms
66,944 KB
testcase_07 AC 63 ms
73,600 KB
testcase_08 AC 68 ms
76,160 KB
testcase_09 AC 71 ms
76,160 KB
testcase_10 AC 80 ms
76,036 KB
testcase_11 AC 81 ms
76,188 KB
testcase_12 AC 82 ms
76,048 KB
testcase_13 AC 82 ms
76,160 KB
testcase_14 AC 82 ms
76,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    from collections import deque
    ans = []
    for i in range(1, N//2 + 1):
        ans.append(i)
        ans.append(0--N//2 + i)
    ans.append(0--N//2)
    ans = deque(ans)
    for i in range(N):
        print(*ans)
        ans.rotate(-1)


if __name__ == '__main__':
    main()
0