結果

問題 No.80 四角形を描こう
ユーザー 👑 colognecologne
提出日時 2022-01-26 19:25:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 167 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 87,072 KB
実行使用メモリ 71,548 KB
最終ジャッジ日時 2023-08-25 01:31:20
合計ジャッジ時間 1,928 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
71,460 KB
testcase_01 AC 63 ms
71,540 KB
testcase_02 AC 63 ms
71,448 KB
testcase_03 AC 63 ms
71,400 KB
testcase_04 AC 66 ms
71,028 KB
testcase_05 AC 64 ms
71,340 KB
testcase_06 AC 62 ms
71,432 KB
testcase_07 AC 63 ms
71,488 KB
testcase_08 AC 62 ms
71,428 KB
testcase_09 AC 64 ms
71,480 KB
testcase_10 AC 64 ms
71,456 KB
testcase_11 AC 62 ms
71,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    N = int(input())
    print(N//4 * ((N+2)//4))


if __name__ == '__main__':
    main()
0