結果
問題 |
No.71 そろばん
|
ユーザー |
|
提出日時 | 2016-11-29 00:05:06 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 462 bytes |
コンパイル時間 | 611 ms |
コンパイル使用メモリ | 79,676 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 12:51:30 |
合計ジャッジ時間 | 1,425 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | WA * 20 |
ソースコード
#define _USE_MATH_DEFINES #include<stdio.h> #include<string> #include<iostream> #include<cctype> #include<cstdio> #include<vector> #include<stack> #include<queue> #include <algorithm> #include<math.h> #include<set> #include<map> #include<iomanip> //#include<bits/stdc++.h> using namespace std; int main() { long long int p=0; int n=0; cin>>n; for(int i=0;i<=n;i++){ long long int w=-(i*i)+(i*n)+n; p=max(p,w); } cout<<p<<endl; return 0; }