結果

問題 No.71 そろばん
ユーザー nari11111nari11111
提出日時 2014-11-18 23:43:33
言語 Python2
(2.7.18)
結果
AC  
実行時間 387 ms / 5,000 ms
コード長 163 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 38,016 KB
最終ジャッジ日時 2024-06-10 21:06:16
合計ジャッジ時間 6,299 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,144 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 387 ms
38,016 KB
testcase_03 AC 157 ms
18,816 KB
testcase_04 AC 221 ms
24,448 KB
testcase_05 AC 324 ms
33,024 KB
testcase_06 AC 359 ms
36,224 KB
testcase_07 AC 235 ms
25,728 KB
testcase_08 AC 170 ms
19,840 KB
testcase_09 AC 352 ms
35,328 KB
testcase_10 AC 225 ms
24,576 KB
testcase_11 AC 60 ms
10,368 KB
testcase_12 AC 120 ms
15,744 KB
testcase_13 AC 365 ms
36,352 KB
testcase_14 AC 154 ms
18,560 KB
testcase_15 AC 297 ms
30,208 KB
testcase_16 AC 59 ms
10,240 KB
testcase_17 AC 177 ms
20,224 KB
testcase_18 AC 305 ms
31,360 KB
testcase_19 AC 360 ms
35,968 KB
testcase_20 AC 369 ms
35,456 KB
testcase_21 AC 163 ms
19,456 KB
testcase_22 AC 264 ms
27,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(raw_input())

ans=[]

for i in xrange(1,n):
    ue = i
    sita = n-i
    e = (sita+1)*ue+sita
    # print e

    ans.append(e)

print max(ans)
0