結果
| 問題 | No.1033 乱数サイ |
| コンテスト | |
| ユーザー |
merom686
|
| 提出日時 | 2020-04-24 21:21:34 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 270 bytes |
| コンパイル時間 | 1,098 ms |
| コンパイル使用メモリ | 89,512 KB |
| 最終ジャッジ日時 | 2025-01-09 23:05:40 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstring>
#include <cstdlib>
#include <cmath>
using namespace std;
using ll = long long;
int main() {
int n, k;
cin >> n >> k;
printf("%.8f\n", n * 0.5);
return 0;
}
merom686