結果
問題 | No.2185 平方数の下6桁 |
ユーザー | _yurimoir |
提出日時 | 2023-01-13 21:27:07 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 311 bytes |
コンパイル時間 | 4,039 ms |
コンパイル使用メモリ | 243,328 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 16:26:13 |
合計ジャッジ時間 | 4,875 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 37 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long int32_t main(){ string s; cin>>s; for(int i=1000;i<1000000;i++){ int amari=i*i%1000000; if(amari==stoll(s)){ cout<<"YES"<<endl; return 0; } } cout<<"NO"<<endl; return 0; }