結果

問題 No.71 そろばん
ユーザー tookunn_1213tookunn_1213
提出日時 2017-01-08 14:41:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 759 ms / 5,000 ms
コード長 112 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-17 18:03:13
合計ジャッジ時間 11,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 759 ms
10,624 KB
testcase_03 AC 317 ms
10,624 KB
testcase_04 AC 440 ms
10,752 KB
testcase_05 AC 627 ms
10,624 KB
testcase_06 AC 718 ms
10,624 KB
testcase_07 AC 476 ms
10,624 KB
testcase_08 AC 335 ms
10,624 KB
testcase_09 AC 675 ms
10,624 KB
testcase_10 AC 432 ms
10,624 KB
testcase_11 AC 124 ms
10,752 KB
testcase_12 AC 243 ms
10,624 KB
testcase_13 AC 710 ms
10,624 KB
testcase_14 AC 305 ms
10,624 KB
testcase_15 AC 562 ms
10,624 KB
testcase_16 AC 123 ms
10,624 KB
testcase_17 AC 348 ms
10,624 KB
testcase_18 AC 593 ms
10,752 KB
testcase_19 AC 684 ms
10,624 KB
testcase_20 AC 699 ms
10,624 KB
testcase_21 AC 330 ms
10,624 KB
testcase_22 AC 514 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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