結果
| 問題 | No.57 ミリオンダイス |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-07 17:20:09 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 178 bytes |
| 記録 | |
| コンパイル時間 | 48 ms |
| コンパイル使用メモリ | 34,432 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-23 15:30:55 |
| 合計ジャッジ時間 | 2,696 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 9 |
ソースコード
#include <stdio.h>
void main(void){
int dice;
scanf("%d",dice);
printf("サイコロの数:%d\n",dice);
double expectedValue = 3.5 * dice;
printf("%0.f",expectedValue);
}
Maeda