結果

問題 No.80 四角形を描こう
ユーザー ronpooronpoo
提出日時 2023-08-25 11:41:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 110 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 87,120 KB
実行使用メモリ 71,660 KB
最終ジャッジ日時 2023-08-25 11:41:18
合計ジャッジ時間 3,021 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,396 KB
testcase_01 AC 71 ms
71,536 KB
testcase_02 AC 71 ms
71,304 KB
testcase_03 AC 71 ms
71,476 KB
testcase_04 AC 70 ms
71,400 KB
testcase_05 AC 71 ms
71,336 KB
testcase_06 AC 72 ms
71,660 KB
testcase_07 AC 69 ms
71,328 KB
testcase_08 AC 71 ms
71,252 KB
testcase_09 AC 72 ms
71,540 KB
testcase_10 AC 72 ms
71,320 KB
testcase_11 AC 71 ms
71,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())

if D < 4:
    D = 0
elif D % 2 == 1:
    D -= 1

w = D // 4
ans = w * (D//2 - w)
print(ans)
0