結果
| 問題 |
No.3037 トグルトグルトグル!
|
| コンテスト | |
| ユーザー |
srjywrdnprkt
|
| 提出日時 | 2025-03-12 12:02:49 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 480 bytes |
| コンパイル時間 | 3,175 ms |
| コンパイル使用メモリ | 273,428 KB |
| 実行使用メモリ | 7,328 KB |
| 最終ジャッジ日時 | 2025-03-12 12:02:54 |
| 合計ジャッジ時間 | 4,558 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
#include <bits/stdc++.h>
//#include <atcoder/modint>
using namespace std;
//using namespace atcoder;
using ll = long long;
//using mint = modint998244353;
ll isqrt(ll a){
if (a == 0) return 0;
ll l=1, r=3037000500, c;
while(r-l>1){
c = (l+r)/2;
if (c*c <= a) l=c;
else r=c;
}
return l;
}
int main(){
cin.tie(nullptr);
ios_base::sync_with_stdio(false);
ll x;
cin >> x;
cout << isqrt(x) << endl;
return 0;
}
srjywrdnprkt