結果

問題 No.1926 Sequence of Remainders
ユーザー tailstails
提出日時 2022-05-06 21:28:00
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,518 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-07-05 22:35:23
合計ジャッジ時間 35,926 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,760 KB
testcase_01 AC 520 ms
20,608 KB
testcase_02 AC 474 ms
20,608 KB
testcase_03 AC 483 ms
20,608 KB
testcase_04 AC 481 ms
20,480 KB
testcase_05 AC 479 ms
20,480 KB
testcase_06 AC 806 ms
20,608 KB
testcase_07 AC 827 ms
20,480 KB
testcase_08 AC 882 ms
20,608 KB
testcase_09 AC 940 ms
20,608 KB
testcase_10 AC 960 ms
20,608 KB
testcase_11 AC 1,075 ms
20,480 KB
testcase_12 AC 1,031 ms
20,608 KB
testcase_13 AC 1,010 ms
20,608 KB
testcase_14 AC 1,149 ms
20,480 KB
testcase_15 AC 1,023 ms
20,480 KB
testcase_16 AC 1,092 ms
20,480 KB
testcase_17 AC 1,274 ms
20,480 KB
testcase_18 AC 1,033 ms
20,608 KB
testcase_19 AC 1,365 ms
20,608 KB
testcase_20 AC 1,151 ms
20,480 KB
testcase_21 AC 1,109 ms
20,480 KB
testcase_22 AC 1,518 ms
20,480 KB
testcase_23 AC 1,073 ms
20,608 KB
testcase_24 AC 1,156 ms
20,608 KB
testcase_25 AC 1,168 ms
20,608 KB
testcase_26 AC 1,058 ms
20,480 KB
testcase_27 AC 1,179 ms
20,608 KB
testcase_28 AC 1,033 ms
20,608 KB
testcase_29 AC 1,016 ms
20,608 KB
testcase_30 AC 1,336 ms
20,608 KB
testcase_31 AC 1,005 ms
20,480 KB
testcase_32 AC 1,016 ms
20,608 KB
testcase_33 AC 1,386 ms
20,480 KB
testcase_34 AC 996 ms
20,608 KB
testcase_35 AC 1,035 ms
20,608 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

<>;
for(<>){
	($n,$m,$k)=glob;
	$k%=$m;
	print$k<$m-$n?$k:0,$/;
}
0