結果
問題 |
No.1700 floor X
|
ユーザー |
|
提出日時 | 2023-06-14 16:52:52 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 207 bytes |
コンパイル時間 | 1,424 ms |
コンパイル使用メモリ | 165,452 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-23 00:48:50 |
合計ジャッジ時間 | 3,978 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | WA * 44 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using Graph = vector<vector<int>>; int main() { long long N; cin >> N; for(int i = 0; i < N; i++) { cout << sqrt(N) << endl; } }