結果

問題 No.207 世界のなんとか
ユーザー gogoteagogotea
提出日時 2015-05-16 01:51:26
言語 Bash
(Bash 5.1.16)
結果
RE  
実行時間 -
コード長 165 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 5,212 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-20 08:59:50
合計ジャッジ時間 972 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 3 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 2 ms
4,376 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,380 KB
testcase_13 AC 3 ms
4,376 KB
testcase_14 AC 3 ms
4,376 KB
testcase_15 RE -
testcase_16 AC 3 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