結果

問題 No.207 世界のなんとか
ユーザー gogoteagogotea
提出日時 2015-05-16 02:18:56
言語 Bash
(Bash 5.1.16)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 209 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 10:14:37
合計ジャッジ時間 2,072 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
5,248 KB
testcase_01 AC 19 ms
5,248 KB
testcase_02 AC 98 ms
5,248 KB
testcase_03 AC 71 ms
5,248 KB
testcase_04 AC 34 ms
5,248 KB
testcase_05 AC 50 ms
5,248 KB
testcase_06 AC 14 ms
5,248 KB
testcase_07 AC 15 ms
5,248 KB
testcase_08 AC 13 ms
5,248 KB
testcase_09 AC 118 ms
5,248 KB
testcase_10 AC 121 ms
5,248 KB
testcase_11 AC 119 ms
5,248 KB
testcase_12 AC 116 ms
5,248 KB
testcase_13 AC 119 ms
5,248 KB
testcase_14 AC 119 ms
5,248 KB
testcase_15 AC 119 ms
5,248 KB
testcase_16 AC 9 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

read start end

n=$start
while [ "$n" -le "$end" ]
do
  if [ $((n % 3)) -eq 0 ]; then
    echo "$n"
  else
    echo "$n" | grep -q '3'
    if [ $? -eq 0 ]; then
      echo "$n"
    fi
  fi
  n=$((n+1))  
done
0