結果
| 問題 |
No.1622 三角形の面積
|
| コンテスト | |
| ユーザー |
kkkk97368086
|
| 提出日時 | 2021-11-22 20:56:28 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 211 bytes |
| コンパイル時間 | 1,596 ms |
| コンパイル使用メモリ | 167,000 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-24 09:59:51 |
| 合計ジャッジ時間 | 2,268 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 4 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
for(int i=0; i<n; i++){
int r;
cin >> r;
double ans = 3.14*r*r;
cout << ans << endl;
}
}
kkkk97368086