結果
| 問題 | No.648 お や す み |
| コンテスト | |
| ユーザー |
focus
|
| 提出日時 | 2018-02-13 21:11:53 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 404 bytes |
| 記録 | |
| コンパイル時間 | 616 ms |
| コンパイル使用メモリ | 64,796 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-30 11:50:37 |
| 合計ジャッジ時間 | 2,663 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 84 |
ソースコード
#include<iostream>
#include<algorithm>
#include<vector>
#include<cstdio>
#include<cmath>
using namespace std;
int main(){
unsigned long long N,ans,i;
cin >> N;
ans = (sqrt(8*N+1)-1)/2;
cout << ans;
for(i=ans;i<ans+50;i++){
if(ans*(ans+1)==2*N&&ans>0){
cout << "YES\n" << ans << endl;
return 0;
}
}
cout << "NO" << endl;
return 0;
}
focus