結果

問題 No.207 世界のなんとか
ユーザー s4229bps4229bp
提出日時 2020-07-08 09:17:44
言語 Bash
(Bash 5.1.16)
結果
WA  
実行時間 -
コード長 113 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-10-03 04:36:32
合計ジャッジ時間 893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,248 KB
testcase_01 AC 8 ms
5,248 KB
testcase_02 AC 9 ms
5,248 KB
testcase_03 AC 8 ms
5,248 KB
testcase_04 AC 8 ms
5,248 KB
testcase_05 AC 8 ms
5,248 KB
testcase_06 AC 7 ms
5,248 KB
testcase_07 AC 8 ms
5,248 KB
testcase_08 AC 8 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 8 ms
5,248 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 AC 8 ms
5,248 KB
testcase_13 AC 8 ms
5,248 KB
testcase_14 AC 8 ms
5,248 KB
testcase_15 AC 8 ms
5,248 KB
testcase_16 AC 8 ms
5,248 KB
testcase_17 AC 8 ms
5,248 KB
testcase_18 AC 8 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

read a b
sa=(`seq $(((a+2)/3*3)) 3 $b`)
sb=(`seq $a $b | grep 3`)
echo ${sa[@]} ${sb[@]} | tr ' ' '\n' | sort -u
0