結果
問題 | No.2185 平方数の下6桁 |
ユーザー | ぷら |
提出日時 | 2023-01-13 21:32:40 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 284 bytes |
コンパイル時間 | 2,459 ms |
コンパイル使用メモリ | 200,172 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 16:38:19 |
合計ジャッジ時間 | 3,565 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 37 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { string S; cin >> S; int s = stoi(S); for(int i = 0; i <= 1000000; i++) { if(1ll*i*i%1000000 == s) { cout << "YES" << endl; return 0; } } cout << "NO" << endl; }