結果

問題 No.3102 Guess and fill in the blank
ユーザー tailstails
提出日時 2023-03-31 23:16:06
言語 Perl
(5.38.2)
結果
RE  
実行時間 -
コード長 125 bytes
コンパイル時間 617 ms
コンパイル使用メモリ 5,328 KB
実行使用メモリ 5,272 KB
最終ジャッジ日時 2023-10-24 09:47:17
合計ジャッジ時間 853 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,272 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 3 ms
5,272 KB
testcase_04 AC 3 ms
5,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>;
if($n==1){
	print 7;
}
if($n==2){
	exit 1;
}
if($n==3){
	exit 1;
}
if($n==4){
	print 2910;
}
if($n==5){
	print 222;
}
0