結果
| 問題 |
No.57 ミリオンダイス
|
| コンテスト | |
| ユーザー |
ikd
|
| 提出日時 | 2015-10-31 10:38:56 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 165 bytes |
| コンパイル時間 | 576 ms |
| コンパイル使用メモリ | 53,928 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-14 05:58:38 |
| 合計ジャッジ時間 | 1,114 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 |
ソースコード
#include<iostream>
#include<stdio.h>
using namespace std;
int main(){
int n;
cin>> n;
double ans = n*3.5;
printf("%.4f\n", ans);
return 0;
}
ikd