結果
| 問題 | No.57 ミリオンダイス |
| コンテスト | |
| ユーザー |
funakoshi
|
| 提出日時 | 2019-08-23 11:25:14 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 185 bytes |
| 記録 | |
| コンパイル時間 | 312 ms |
| コンパイル使用メモリ | 40,312 KB |
| 最終ジャッジ日時 | 2026-02-22 04:27:52 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 9 |
ソースコード
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
int main(void)
{
float dice;
scanf("%f",&dice);
printf("%.0f",dice*3.5);
}
funakoshi