結果

問題 No.111 あばばばば
ユーザー funakoshi
提出日時 2019-09-05 13:14:08
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 224 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 29,312 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 07:32:12
合計ジャッジ時間 1,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
int main(void)
{
    int len;
    scanf("%d",&len);
    long long int ans = (len-1)/2;
    ans*=ans;
    printf("%lld",ans);
}
0