結果

問題 No.839 Keep Distance and Nobody Explodes
ユーザー pluto77pluto77
提出日時 2019-06-20 16:29:40
言語 Python2
(2.7.18)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-05-10 00:12:58
合計ジャッジ時間 3,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,168 KB
testcase_01 AC 17 ms
6,944 KB
testcase_02 AC 17 ms
6,912 KB
testcase_03 AC 17 ms
6,912 KB
testcase_04 AC 18 ms
6,912 KB
testcase_05 AC 69 ms
8,960 KB
testcase_06 AC 68 ms
9,088 KB
testcase_07 AC 70 ms
9,216 KB
testcase_08 AC 72 ms
9,344 KB
testcase_09 AC 70 ms
9,216 KB
testcase_10 AC 64 ms
9,088 KB
testcase_11 AC 27 ms
7,296 KB
testcase_12 AC 33 ms
7,552 KB
testcase_13 AC 23 ms
7,168 KB
testcase_14 AC 22 ms
7,296 KB
testcase_15 AC 20 ms
7,168 KB
testcase_16 AC 19 ms
7,168 KB
testcase_17 AC 60 ms
8,576 KB
testcase_18 AC 19 ms
7,040 KB
testcase_19 AC 21 ms
7,168 KB
testcase_20 AC 46 ms
8,192 KB
testcase_21 AC 20 ms
7,040 KB
testcase_22 AC 55 ms
8,576 KB
testcase_23 AC 17 ms
7,040 KB
testcase_24 AC 44 ms
8,192 KB
testcase_25 AC 20 ms
7,168 KB
testcase_26 AC 23 ms
7,424 KB
testcase_27 AC 24 ms
7,424 KB
testcase_28 AC 26 ms
7,296 KB
testcase_29 AC 43 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki837

n=int(raw_input())
a=[[0 for i in xrange(300)] for j in xrange(300)]
k=1
for i in xrange(n/2):
 for j in xrange(n/2):
  a[i][j]=k
  k+=1
  a[i+n/2][j+n/2]=k
  k+=1

for i in xrange(n/2):
 for j in xrange(n/2-1,-1,-1):
  a[i][j+n/2]=k
  k+=1
  a[i+n/2][j]=k
  k+=1

for i in xrange(n):
 for j in xrange(n):
  print a[i][j],
 print
0