結果

問題 No.1700 floor X
ユーザー ninoinui
提出日時 2021-12-26 11:45:02
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 1,796 ms
コンパイル使用メモリ 193,448 KB
最終ジャッジ日時 2025-01-27 07:02:59
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 41 WA * 3
権限があれば一括ダウンロードができます
コンパイルメッセージ
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(sqrt(N) + 1e-10) << '\n';
}
0