結果

問題 No.71 そろばん
ユーザー yuki2006yuki2006
提出日時 2014-11-18 21:02:31
言語 Python2
(2.7.18)
結果
AC  
実行時間 205 ms / 5,000 ms
コード長 131 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-06-10 20:12:44
合計ジャッジ時間 4,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,272 KB
testcase_01 AC 8 ms
6,144 KB
testcase_02 AC 205 ms
6,272 KB
testcase_03 AC 90 ms
6,272 KB
testcase_04 AC 119 ms
6,144 KB
testcase_05 AC 171 ms
6,144 KB
testcase_06 AC 192 ms
6,144 KB
testcase_07 AC 126 ms
6,272 KB
testcase_08 AC 91 ms
6,272 KB
testcase_09 AC 185 ms
6,144 KB
testcase_10 AC 118 ms
6,272 KB
testcase_11 AC 33 ms
6,144 KB
testcase_12 AC 66 ms
6,144 KB
testcase_13 AC 190 ms
6,144 KB
testcase_14 AC 84 ms
6,144 KB
testcase_15 AC 156 ms
6,272 KB
testcase_16 AC 34 ms
6,272 KB
testcase_17 AC 93 ms
6,144 KB
testcase_18 AC 161 ms
6,272 KB
testcase_19 AC 193 ms
6,272 KB
testcase_20 AC 186 ms
6,144 KB
testcase_21 AC 89 ms
6,144 KB
testcase_22 AC 140 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())

mx = 0
for i in xrange(1, N):
    j = i + (i + 1) * (N - i)
    if mx < j:
        mx = j

print mx
0