結果
| 問題 |
No.244 ★1のグラフの問題
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-10-27 09:15:37 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 110 bytes |
| コンパイル時間 | 880 ms |
| コンパイル使用メモリ | 78,736 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-27 09:15:38 |
| 合計ジャッジ時間 | 1,777 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | WA * 7 |
ソースコード
#include <iostream>
using namespace std;
int main() {
float n;
cin >> n;
cout << (n/2) * (n - 1);
}