結果
| 問題 |
No.508 超ゆとり教育
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-04-12 03:19:27 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 190 bytes |
| コンパイル時間 | 2,813 ms |
| コンパイル使用メモリ | 191,416 KB |
| 最終ジャッジ日時 | 2025-01-20 16:15:10 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 2 WA * 5 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
int main(){
double n;
cin >> n;
double ans = sqrt(n / 3);
cout << ans << endl;
return 0;
}