結果

問題 No.1700 floor X
ユーザー ninoinui
提出日時 2021-12-26 11:45:29
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 1,679 ms
コンパイル使用メモリ 194,288 KB
最終ジャッジ日時 2025-01-27 07:03:09
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 44
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:2:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    2 | main() {
      | ^~~~

ソースコード

diff #

#include <bits/stdc++.h>
main() {
    long N;
    std::cin >> N;
    while (std::cin >> N) std::cout << int(sqrtl(N) + 1e-10) << '\n';
}
0