Clarifications


Task Name Username Clarifications Response Public Created time Modified time
wata_admin
Announcement
When your program output an out-of-range value N as a coordinate value that should be between 0 and N-1, the judge's result was mistakenly marked as RE instead of WA. This has now been corrected to WA. Since the scores are not affected, we will not conduct rejudgments.
The tools have also been corrected to give an out-of-range message instead of causing an RE. Please re-download them if necessary.


0以上N-1以下の値を出力するべき座標値として範囲外のNを出力した際のジャッジ結果が、本来WAとなるべきところ、REとなっていました。現在はWAとなるように修正済みです。点数に影響はないためリジャッジは行いません。
配布ツールも同様に、REが発生するのではなく、範囲外であるというメッセージを出力するように修正をしました。必要があれば再ダウンロード下さい。
Yes
wata_admin
Announcement
In order to prevent situations where blind guessing on the first move to aim for cost 0 becomes the best strategy in terms of expected value, we introduce the following lower bound to the absolute score. Since there is no effect on the current scores, we will not make rejudgement. The tools and visualizers have been updated so please re-download them if necessary.

Before: round(10^6×C)
After: round(10^6×max(C, 1/N))


初手で運任せに推測を行うことでコスト0を狙う戦略が期待値的に最善となる状況が起きてしまうことを避けるため、以下のように絶対スコアに下限を設定する変更を行います。現在のスコアへの影響は無いため、リジャッジは行いません。配布ツールならびにビジュアライザは修正済みのため、必要があれば再ダウンロードしてください。

変更前: round(10^6×C)
変更後: round(10^6×max(C, 1/N))
Yes
A - Polyomino Mining nakamurk
2N ^2  回以降の操作を行った場合のシステムからのレスポンスを教えてください。
その時点でWAになりますでしょうか。
ジャッジは2N^2回目より後のクエリに対してレスポンスを返さないため、提出プログラムがレスポンス待ちをした場合はTLEとなります。

Question: What is the response from the system after 2N^2 operations? Will it get WA at that point?
Answer: The judge program will not return a response to any query later than 2N^2 times, so if your program waits for a response, it will result in TLE.
Yes
A - Polyomino Mining hirayuu_At
入力生成方法の中で、小文字のnは定義されていますか?
問題文中の小文字の「n」は島のサイズを表す大文字の「N」の間違いです。
問題文を修正しました。


The lowercase 'n' in the problem statement was a mistake for the uppercase 'N' representing the size of the island. The problem statement has been corrected.
Yes