結果
| 問題 |
No.1408 Nice Dice Game
|
| コンテスト | |
| ユーザー |
QCFium
|
| 提出日時 | 2021-02-26 21:43:25 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 323 bytes |
| コンパイル時間 | 1,494 ms |
| コンパイル使用メモリ | 163,984 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-02 14:19:12 |
| 合計ジャッジ時間 | 6,162 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 RE * 35 |
ソースコード
#include <bits/stdc++.h>
int ri() {
int n;
scanf("%d", &n);
return n;
}
int main() {
int n = ri();
if (n == 1) {
puts("1.20205690315959428539973816151144");
} else if (n == 2) {
puts("1.0823232337111381915160036965411679027747");
} else if (n == 3) {
puts("1.036927755");
} else assert(0);
return 0;
}
QCFium