結果

問題 No.304 鍵(1)
ユーザー tailstails
提出日時 2015-11-27 22:32:23
言語 Perl
(5.38.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 54 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 5,212 KB
実行使用メモリ 24,096 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-09-23 20:50:22
合計ジャッジ時間 1,223 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
24,096 KB
testcase_01 AC 32 ms
23,604 KB
testcase_02 AC 65 ms
23,880 KB
testcase_03 AC 31 ms
23,592 KB
testcase_04 AC 47 ms
23,892 KB
testcase_05 AC 31 ms
23,580 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Unquoted string "u" may clash with future reserved word at Main.pl line 4.
Main.pl syntax OK

ソースコード

diff #

$|=1;
for('000'..'999'){
	print$_,$/;
	exit if<>=~u;
}
0