結果
| 問題 | No.111 あばばばば |
| コンテスト | |
| ユーザー |
goodbaton
|
| 提出日時 | 2014-12-24 00:04:06 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| + 314µs | |
| コード長 | 341 bytes |
| 記録 | |
| コンパイル時間 | 373 ms |
| コンパイル使用メモリ | 91,568 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-25 23:24:06 |
| 合計ジャッジ時間 | 1,309 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
using namespace std;
int main(){
long long n;
scanf("%lld",&n);
printf("%lld\n",(n/2)*(n/2+1)/2+(n/2-1)*(n/2)/2);
return 0;
}
goodbaton