結果

問題 No.71 そろばん
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-28 01:55:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 368 ms / 5,000 ms
コード長 87 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 38,100 KB
最終ジャッジ日時 2024-06-23 22:45:25
合計ジャッジ時間 5,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,812 KB
testcase_01 AC 14 ms
6,944 KB
testcase_02 AC 368 ms
38,100 KB
testcase_03 AC 157 ms
19,052 KB
testcase_04 AC 213 ms
24,592 KB
testcase_05 AC 305 ms
32,776 KB
testcase_06 AC 341 ms
36,228 KB
testcase_07 AC 227 ms
25,716 KB
testcase_08 AC 171 ms
19,968 KB
testcase_09 AC 332 ms
35,500 KB
testcase_10 AC 215 ms
24,568 KB
testcase_11 AC 57 ms
10,496 KB
testcase_12 AC 119 ms
15,872 KB
testcase_13 AC 345 ms
36,528 KB
testcase_14 AC 148 ms
18,608 KB
testcase_15 AC 278 ms
30,352 KB
testcase_16 AC 57 ms
10,368 KB
testcase_17 AC 168 ms
20,352 KB
testcase_18 AC 289 ms
31,308 KB
testcase_19 AC 340 ms
35,988 KB
testcase_20 AC 334 ms
35,404 KB
testcase_21 AC 159 ms
19,456 KB
testcase_22 AC 252 ms
28,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
ans=0
for i in range(N):
    ans=max(ans,(i+1)*(N-i+1)-1)
print ans
0