結果

問題 No.71 そろばん
ユーザー shi-moshi-mo
提出日時 2016-10-23 01:53:32
言語 Ruby
(3.4.1)
結果
AC  
実行時間 182 ms / 5,000 ms
コード長 105 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-11-23 17:47:39
合計ジャッジ時間 4,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,032 KB
testcase_01 AC 79 ms
12,032 KB
testcase_02 AC 182 ms
12,160 KB
testcase_03 AC 124 ms
12,032 KB
testcase_04 AC 142 ms
12,288 KB
testcase_05 AC 173 ms
12,288 KB
testcase_06 AC 177 ms
12,032 KB
testcase_07 AC 141 ms
12,288 KB
testcase_08 AC 123 ms
12,032 KB
testcase_09 AC 169 ms
12,160 KB
testcase_10 AC 142 ms
12,160 KB
testcase_11 AC 95 ms
12,032 KB
testcase_12 AC 114 ms
12,160 KB
testcase_13 AC 172 ms
12,288 KB
testcase_14 AC 120 ms
12,160 KB
testcase_15 AC 157 ms
12,160 KB
testcase_16 AC 92 ms
12,160 KB
testcase_17 AC 124 ms
12,288 KB
testcase_18 AC 161 ms
12,160 KB
testcase_19 AC 181 ms
12,032 KB
testcase_20 AC 170 ms
12,160 KB
testcase_21 AC 123 ms
12,032 KB
testcase_22 AC 150 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i

x = 1
1.upto(n-1) do |a|
  b = n - a
  x_ = (a+1) * (b+1) - 1
  x = [x, x_].max
end
puts x
0