結果
| 問題 | No.1408 Nice Dice Game |
| コンテスト | |
| ユーザー |
QCFium
|
| 提出日時 | 2021-02-26 21:52:41 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 353 bytes |
| 記録 | |
| コンパイル時間 | 853 ms |
| コンパイル使用メモリ | 176,912 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-09-09 01:02:40 |
| 合計ジャッジ時間 | 3,956 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 26 RE * 10 |
ソースコード
#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 if (n > 100) puts("1");
else assert(0);
return 0;
}
QCFium