結果

問題 No.207 世界のなんとか
ユーザー gogoteagogotea
提出日時 2015-05-16 02:42:06
言語 Bash
(Bash 5.1.16)
結果
RE  
実行時間 -
コード長 163 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 5,216 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-20 08:59:32
合計ジャッジ時間 1,559 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

read start end

for ((n=${start};n<=${end};n++))
do
  case $n in
    *3*)
      echo $n
      ;;
    *)
      [ $((n % 3)) -eq 0 ] && echo $n
      ;;
  esac
done
0