結果

問題 No.831 都市めぐり
ユーザー letrangerjpletrangerjp
提出日時 2019-05-24 21:43:56
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 64,128 KB
最終ジャッジ日時 2024-09-17 10:31:44
合計ジャッジ時間 6,726 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 WA -
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 92 ms
12,032 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 97 ms
12,032 KB
testcase_06 AC 91 ms
12,160 KB
testcase_07 AC 97 ms
12,288 KB
testcase_08 AC 98 ms
12,160 KB
testcase_09 AC 94 ms
12,160 KB
testcase_10 AC 98 ms
12,416 KB
testcase_11 AC 98 ms
12,160 KB
testcase_12 AC 140 ms
15,104 KB
testcase_13 AC 132 ms
14,848 KB
testcase_14 AC 139 ms
14,976 KB
testcase_15 AC 480 ms
36,096 KB
testcase_16 AC 257 ms
23,808 KB
testcase_17 AC 559 ms
38,528 KB
testcase_18 AC 709 ms
47,232 KB
testcase_19 AC 1,028 ms
62,976 KB
testcase_20 AC 1,067 ms
64,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a = [*1..gets.to_i]

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