結果

問題 No.508 超ゆとり教育
ユーザー 0x19f0x19f
提出日時 2017-04-28 22:47:14
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 58,660 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-13 18:13:33
合計ジャッジ時間 1,165 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;

int main(void) {
  long n; cin >> n;
  int r = sqrt(n / 3);
  cout << (r > 0 ? r : 1) << endl;

  return 0;
}
0