結果

問題 No.3037 トグルトグルトグル!
ユーザー Mogobon
提出日時 2025-02-28 23:03:06
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 185 bytes
コンパイル時間 709 ms
コンパイル使用メモリ 77,444 KB
実行使用メモリ 13,632 KB
最終ジャッジ日時 2025-02-28 23:03:10
合計ジャッジ時間 4,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 4 TLE * 1 -- * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main()
{	
	int N;
	cin >> N;
	int i = 1;
	int ans = 0;
	while (i*i <= N){
    	ans += 1;
    	i += 1;
	}
	cout << ans << endl;
	return 0;
}
0