結果

問題 No.51 やる気の問題
コンテスト
ユーザー uKAkiuZ
提出日時 2019-02-16 03:20:44
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 364 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 659 ms
コンパイル使用メモリ 69,612 KB
実行使用メモリ 7,968 KB
最終ジャッジ日時 2026-04-07 03:24:44
合計ジャッジ時間 6,555 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other WA * 20
権限があれば一括ダウンロードができます
コンパイルメッセージ
In file included from /home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/ostream:42,
                 from /home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/iostream:43,
                 from main.cpp:1:
In member function 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(double) [with _CharT = char; _Traits = std::char_traits<char>]',
    inlined from 'int main()' at main.cpp:21:10:
/home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/bits/ostream.h:232:25: warning: 'dNum' may be used uninitialized [-Wmaybe-uninitialized]
  232 |       { return _M_insert(__f); }
      |                ~~~~~~~~~^~~~~
main.cpp: In function 'int main()':
main.cpp:8:16: note: 'dNum' was declared here
    8 |         double dNum;    // 1日あたりの仕事量
      |                ^~~~

ソースコード

diff #
raw source code

#include<iostream>
using namespace std;

int main() {
	float work;		// 仕事量
	int day;		// 日数
	int cDay;		// 繰り返し用にコピー
	double dNum;	// 1日あたりの仕事量

	cin >> work;
	cin >> day;

	cDay = day;

	for (int i = 0; i < cDay; ++i) {
		dNum = (double)work / (day*day);
		work -= (float)dNum;
		--day;
	}

	cout << dNum;

	return 0;
}
0