結果
問題 | No.508 超ゆとり教育 |
ユーザー | nao109 |
提出日時 | 2022-07-23 16:25:39 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 234 bytes |
コンパイル時間 | 1,209 ms |
コンパイル使用メモリ | 158,180 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-05 05:38:05 |
合計ジャッジ時間 | 1,779 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 7 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; #define fi first #define se second #define all(a) a.begin(),a.end() int main(){ ll n; cin >> n; ll r=ceil(sqrt(n/3)); cout << max(1ll,r) << endl; return 0; }