結果

問題 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
コンパイル時間 469 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-12-17 19:06:30
合計ジャッジ時間 4,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
7,040 KB
testcase_01 AC 18 ms
7,040 KB
testcase_02 AC 17 ms
7,040 KB
testcase_03 AC 17 ms
7,040 KB
testcase_04 AC 16 ms
7,040 KB
testcase_05 AC 72 ms
8,960 KB
testcase_06 AC 71 ms
9,216 KB
testcase_07 AC 71 ms
9,216 KB
testcase_08 AC 71 ms
9,344 KB
testcase_09 AC 72 ms
9,216 KB
testcase_10 AC 64 ms
8,960 KB
testcase_11 AC 28 ms
7,424 KB
testcase_12 AC 34 ms
7,808 KB
testcase_13 AC 22 ms
7,168 KB
testcase_14 AC 22 ms
7,168 KB
testcase_15 AC 19 ms
7,040 KB
testcase_16 AC 18 ms
7,168 KB
testcase_17 AC 59 ms
8,704 KB
testcase_18 AC 19 ms
7,168 KB
testcase_19 AC 20 ms
7,040 KB
testcase_20 AC 45 ms
8,064 KB
testcase_21 AC 20 ms
7,040 KB
testcase_22 AC 54 ms
8,448 KB
testcase_23 AC 18 ms
7,040 KB
testcase_24 AC 46 ms
8,192 KB
testcase_25 AC 21 ms
7,040 KB
testcase_26 AC 25 ms
7,296 KB
testcase_27 AC 27 ms
7,424 KB
testcase_28 AC 25 ms
7,296 KB
testcase_29 AC 42 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