結果

問題 No.2767 Add to Divide
ユーザー tailstails
提出日時 2024-05-31 22:07:53
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 8,952 ms
コンパイル使用メモリ 221,456 KB
実行使用メモリ 11,848 KB
最終ジャッジ日時 2024-12-20 23:38:49
合計ジャッジ時間 9,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,804 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 9 ms
9,804 KB
testcase_04 AC 9 ms
9,900 KB
testcase_05 AC 10 ms
10,080 KB
testcase_06 WA -
testcase_07 AC 9 ms
9,680 KB
testcase_08 AC 9 ms
9,864 KB
testcase_09 WA -
testcase_10 AC 9 ms
9,804 KB
testcase_11 AC 8 ms
9,740 KB
testcase_12 AC 9 ms
9,804 KB
testcase_13 AC 8 ms
9,720 KB
testcase_14 AC 10 ms
10,608 KB
testcase_15 AC 9 ms
9,804 KB
testcase_16 AC 10 ms
9,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@t;
ll d[1344],i;
rep(t){
	ll@a,@b;
	i=Divisor(b-a,d);
	if(d[--i]<a){
		wt(-1);
	}else{
		while(i&&d[i-1]>=a){
			--i;
		}
		wt(d[i]-a);
	}
}
0