結果
問題 | No.3037 トグルトグルトグル! |
ユーザー |
|
提出日時 | 2025-02-28 22:27:37 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 183 bytes |
コンパイル時間 | 1,437 ms |
コンパイル使用メモリ | 162,224 KB |
実行使用メモリ | 8,608 KB |
最終ジャッジ日時 | 2025-03-07 08:48:07 |
合計ジャッジ時間 | 2,110 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 WA * 1 |
ソースコード
//yukicoder contest 458 D #include <bits/stdc++.h> using namespace std; using ll = long long; int main() { ll N; cin >> N; cout << int(sqrt(N)) << endl; return 0; }