結果

問題 No.1082 XORのXOR
ユーザー tailstails
提出日時 2020-06-19 22:37:07
言語 Perl
(5.38.2)
結果
AC  
実行時間 393 ms / 2,000 ms
コード長 87 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 5,332 KB
実行使用メモリ 5,780 KB
最終ジャッジ日時 2023-09-16 14:52:00
合計ジャッジ時間 11,251 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,284 KB
testcase_01 AC 6 ms
5,164 KB
testcase_02 AC 6 ms
5,340 KB
testcase_03 AC 393 ms
5,604 KB
testcase_04 AC 386 ms
5,780 KB
testcase_05 AC 391 ms
5,444 KB
testcase_06 AC 387 ms
5,508 KB
testcase_07 AC 387 ms
5,656 KB
testcase_08 AC 385 ms
5,440 KB
testcase_09 AC 387 ms
5,680 KB
testcase_10 AC 383 ms
5,604 KB
testcase_11 AC 373 ms
5,520 KB
testcase_12 AC 380 ms
5,684 KB
testcase_13 AC 384 ms
5,604 KB
testcase_14 AC 376 ms
5,656 KB
testcase_15 AC 387 ms
5,720 KB
testcase_16 AC 392 ms
5,536 KB
testcase_17 AC 390 ms
5,536 KB
testcase_18 AC 392 ms
5,644 KB
testcase_19 AC 378 ms
5,532 KB
testcase_20 AC 386 ms
5,652 KB
testcase_21 AC 382 ms
5,548 KB
testcase_22 AC 387 ms
5,552 KB
testcase_23 AC 385 ms
5,536 KB
testcase_24 AC 388 ms
5,748 KB
testcase_25 AC 387 ms
5,652 KB
testcase_26 AC 384 ms
5,528 KB
testcase_27 AC 389 ms
5,656 KB
testcase_28 AC 6 ms
5,100 KB
testcase_29 AC 6 ms
5,092 KB
testcase_30 AC 6 ms
5,172 KB
testcase_31 AC 5 ms
5,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

<>;
@a=glob<>;
for$a(@a){
	for$b(@a){
		$x=$a+0^$b;
		$m=$x if $m<$x;
	}
}
print $m+0;
0