結果

問題 No.2016 Countdown Divisors
ユーザー tailstails
提出日時 2022-07-24 02:40:39
言語 Bash
(Bash 5.1.16)
結果
AC  
実行時間 1,001 ms / 2,000 ms
コード長 48 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 18:11:42
合計ジャッジ時間 16,993 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 993 ms
5,376 KB
testcase_02 AC 980 ms
5,376 KB
testcase_03 AC 879 ms
5,376 KB
testcase_04 AC 787 ms
5,376 KB
testcase_05 AC 768 ms
5,376 KB
testcase_06 AC 267 ms
5,376 KB
testcase_07 AC 274 ms
5,376 KB
testcase_08 AC 981 ms
5,376 KB
testcase_09 AC 980 ms
5,376 KB
testcase_10 AC 963 ms
5,376 KB
testcase_11 AC 1,001 ms
5,376 KB
testcase_12 AC 986 ms
5,376 KB
testcase_13 AC 918 ms
5,376 KB
testcase_14 AC 876 ms
5,376 KB
testcase_15 AC 854 ms
5,376 KB
testcase_16 AC 915 ms
5,376 KB
testcase_17 AC 888 ms
5,376 KB
testcase_18 AC 904 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

read
while read n
do
echo $[n<9&442>>n?1:2]
done
0