結果

問題 No.80 四角形を描こう
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-12 22:17:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 138 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 59,604 KB
最終ジャッジ日時 2024-09-24 09:04:11
合計ジャッジ時間 1,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,492 KB
testcase_01 AC 37 ms
52,268 KB
testcase_02 AC 37 ms
52,888 KB
testcase_03 AC 36 ms
52,400 KB
testcase_04 AC 36 ms
52,908 KB
testcase_05 AC 36 ms
51,700 KB
testcase_06 AC 37 ms
52,272 KB
testcase_07 AC 36 ms
52,880 KB
testcase_08 AC 36 ms
52,552 KB
testcase_09 AC 40 ms
59,604 KB
testcase_10 AC 40 ms
59,224 KB
testcase_11 AC 41 ms
59,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())
ans = 0
for x in range(0, d+1):
    if d-2*x < 0:
        continue
    y = (d-2*x)//2
    ans = max(ans, x*y)
print(ans)
0