結果

問題 No.80 四角形を描こう
ユーザー kohei2019kohei2019
提出日時 2021-05-22 15:01:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 76 bytes
コンパイル時間 1,341 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 53,252 KB
最終ジャッジ日時 2024-10-10 11:46:54
合計ジャッジ時間 1,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,520 KB
testcase_01 AC 37 ms
52,160 KB
testcase_02 AC 36 ms
53,100 KB
testcase_03 AC 36 ms
52,140 KB
testcase_04 AC 35 ms
53,252 KB
testcase_05 AC 37 ms
51,940 KB
testcase_06 AC 37 ms
53,012 KB
testcase_07 AC 36 ms
52,928 KB
testcase_08 AC 37 ms
51,624 KB
testcase_09 AC 37 ms
52,232 KB
testcase_10 AC 37 ms
53,172 KB
testcase_11 AC 36 ms
52,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())
if D %2 == 1:
    D -= 1
a = D//4
b = (D-2*a)//2
print(a*b)
0