結果
問題 | No.508 超ゆとり教育 |
ユーザー | chacoder1 |
提出日時 | 2021-01-28 12:57:17 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 192 bytes |
コンパイル時間 | 2,039 ms |
コンパイル使用メモリ | 191,608 KB |
最終ジャッジ日時 | 2025-01-18 08:30:13 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 7 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main(){ ll n; cin>>n; ll ans=(ll)pow((n/3),0.5); cout<<setprecision(12)<<max((ll)1,ans)<<endl; return 0; }