結果
| 問題 |
No.3037 トグルトグルトグル!
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-01-08 21:54:39 |
| 言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 157 bytes |
| コンパイル時間 | 8,274 ms |
| コンパイル使用メモリ | 250,636 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2025-01-17 23:04:42 |
| 合計ジャッジ時間 | 16,984 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 TLE * 3 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin>>n;
int ans=0;
for(int i=1;i*i<=n;i++) ans++;
cout<<ans<<endl;
}