結果

問題 No.831 都市めぐり
ユーザー letrangerjpletrangerjp
提出日時 2019-05-24 21:45:07
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,063 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 64,256 KB
最終ジャッジ日時 2024-09-17 10:32:11
合計ジャッジ時間 6,532 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 96 ms
12,160 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 89 ms
12,416 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 92 ms
12,160 KB
testcase_06 AC 92 ms
12,288 KB
testcase_07 AC 95 ms
12,416 KB
testcase_08 AC 97 ms
12,416 KB
testcase_09 AC 93 ms
12,288 KB
testcase_10 AC 95 ms
12,544 KB
testcase_11 AC 96 ms
12,160 KB
testcase_12 AC 140 ms
15,104 KB
testcase_13 AC 129 ms
14,976 KB
testcase_14 AC 139 ms
14,976 KB
testcase_15 AC 483 ms
36,224 KB
testcase_16 AC 253 ms
23,936 KB
testcase_17 AC 554 ms
38,784 KB
testcase_18 AC 705 ms
47,360 KB
testcase_19 AC 1,015 ms
63,104 KB
testcase_20 AC 1,063 ms
64,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
if N == 1
  p 0
  exit
end

a = [*1..N]

res = []
res << a.shift
loop{
  a.empty? ? break : res << a.pop
  a.empty? ? break : res.unshift(a.pop)
  a.empty? ? break : res << a.shift
  a.empty? ? break : res.unshift(a.shift)
}
res << res[0]
p res.each_cons(2).inject(0){|r,(a,b)|
  r + a * b
}
0