結果
| 問題 | No.508 超ゆとり教育 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-04-12 03:19:27 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 190 bytes |
| 記録 | |
| コンパイル時間 | 1,287 ms |
| コンパイル使用メモリ | 208,052 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-19 16:43:04 |
| 合計ジャッジ時間 | 3,467 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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;
}