結果

問題 No.80 四角形を描こう
ユーザー tanimani364tanimani364
提出日時 2021-03-24 15:06:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 65,052 KB
最終ジャッジ日時 2024-11-26 22:58:23
合計ジャッジ時間 1,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
63,672 KB
testcase_01 AC 58 ms
64,040 KB
testcase_02 AC 58 ms
63,644 KB
testcase_03 AC 56 ms
64,120 KB
testcase_04 AC 56 ms
63,392 KB
testcase_05 AC 56 ms
64,616 KB
testcase_06 AC 58 ms
64,264 KB
testcase_07 AC 58 ms
65,052 KB
testcase_08 AC 58 ms
64,772 KB
testcase_09 AC 57 ms
64,460 KB
testcase_10 AC 57 ms
64,964 KB
testcase_11 AC 57 ms
63,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#coding:utf-8

import math
import string
from sys import stdin
# import numpy as np
# from matplotlib import pyplot as plt

	
def main():
	read=stdin.readline

	#edit here!
	d=int(read())
	x=d//4
	ans=x*(d//2-x)
	print(ans)
if __name__ == '__main__':
	main()
0