結果

問題 No.71 そろばん
ユーザー simansiman
提出日時 2015-11-07 20:50:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 238 ms / 5,000 ms
コード長 47 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 37,888 KB
最終ジャッジ日時 2024-09-13 14:04:33
合計ジャッジ時間 5,078 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,288 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 238 ms
37,888 KB
testcase_03 AC 147 ms
24,064 KB
testcase_04 AC 173 ms
27,904 KB
testcase_05 AC 215 ms
27,700 KB
testcase_06 AC 233 ms
29,192 KB
testcase_07 AC 178 ms
29,056 KB
testcase_08 AC 153 ms
24,576 KB
testcase_09 AC 224 ms
28,740 KB
testcase_10 AC 172 ms
28,160 KB
testcase_11 AC 107 ms
14,976 KB
testcase_12 AC 133 ms
21,632 KB
testcase_13 AC 230 ms
29,184 KB
testcase_14 AC 147 ms
23,552 KB
testcase_15 AC 204 ms
26,356 KB
testcase_16 AC 108 ms
15,104 KB
testcase_17 AC 155 ms
24,832 KB
testcase_18 AC 207 ms
26,848 KB
testcase_19 AC 228 ms
29,128 KB
testcase_20 AC 226 ms
28,872 KB
testcase_21 AC 152 ms
24,320 KB
testcase_22 AC 193 ms
25,084 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s=gets.to_i;p [*1..s].map{|n|(n+1)*(s-n)+n}.max
0