結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 27 ms
5,376 KB
testcase_02 AC 10 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 34 ms
11,008 KB
testcase_05 AC 8 ms
6,016 KB
testcase_06 AC 18 ms
5,376 KB
testcase_07 AC 27 ms
5,376 KB
testcase_08 AC 18 ms
8,064 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 14 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 29 ms
5,376 KB
testcase_19 AC 40 ms
12,032 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