結果

問題 No.2357 Guess the Function
ユーザー tailstails
提出日時 2023-06-24 02:23:37
言語 Perl
(5.38.2)
結果
AC  
実行時間 30 ms / 1,000 ms
コード長 213 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 31,260 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-01 05:58:42
合計ジャッジ時間 1,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
30,724 KB
testcase_01 AC 28 ms
31,004 KB
testcase_02 AC 28 ms
31,132 KB
testcase_03 AC 28 ms
30,620 KB
testcase_04 AC 26 ms
31,004 KB
testcase_05 AC 26 ms
30,876 KB
testcase_06 AC 26 ms
30,620 KB
testcase_07 AC 25 ms
31,260 KB
testcase_08 AC 26 ms
30,876 KB
testcase_09 AC 27 ms
31,004 KB
testcase_10 AC 27 ms
30,812 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

exit if fork;
exit if fork;
++$|;
$c=100;
print"? $c\n";
$cr=<>;
$d=$cr<50?99-$cr*2:1;
print"? $d\n";
$dr=<>;
for$a(0..99){
	for$b($a+1..100){
		if(($a+$c)%$b==$cr&&($a+$d)%$b==$dr){
			print"! $a $b\n";
		}
	}
}
0