結果

問題 No.57 ミリオンダイス
ユーザー jajagacchijajagacchi
提出日時 2017-01-18 22:17:51
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 55,280 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 01:23:20
合計ジャッジ時間 1,093 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>

int main()
{
	int N; std::cin >> N;
	double e = 3.5;
	for(int i=1; i<N; i++)
	{
		e = e+21/6.;
	}
	printf("%.3f\n" , e);

	return 0;
}
0