結果

問題 No.1528 Not 1
ユーザー tailstails
提出日時 2021-06-04 20:14:08
言語 Perl
(5.38.2)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-11-19 08:18:41
合計ジャッジ時間 2,215 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 28 ms
6,816 KB
testcase_02 AC 11 ms
6,820 KB
testcase_03 AC 14 ms
6,816 KB
testcase_04 AC 36 ms
11,008 KB
testcase_05 AC 8 ms
6,820 KB
testcase_06 AC 19 ms
6,816 KB
testcase_07 AC 29 ms
6,816 KB
testcase_08 AC 20 ms
7,936 KB
testcase_09 AC 8 ms
6,820 KB
testcase_10 AC 15 ms
6,820 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 3 ms
6,820 KB
testcase_17 AC 3 ms
6,820 KB
testcase_18 AC 31 ms
6,816 KB
testcase_19 AC 44 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$\=$,=$";
$n=<>;
if($n<3){
	print 1;
	exit;
}
if($n==3||$n==5){
	print -1;
	exit;
}
if($n&1){
	print 3,6,2,4,map $_*2, 4..$n/2;
	exit;
}
{
	print $_*2 for 1..$n/2;
	exit;
}
0