結果
問題 |
No.111 あばばばば
|
ユーザー |
![]() |
提出日時 | 2017-09-24 19:46:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 312 bytes |
コンパイル時間 | 598 ms |
コンパイル使用メモリ | 73,104 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 07:18:56 |
合計ジャッジ時間 | 1,162 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <iostream> #include <iomanip> #include <cmath> typedef long long ll; int main(void) { std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(13); ll l; std::cin >> l; l /= 2; std::cout << l * (l+1) / 2 + l * (l-1) / 2 << std::endl; return 0; }