結果

問題 No.1908 Assault for Keys
ユーザー n_getn_get
提出日時 2022-07-13 13:42:17
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-06-24 16:28:33
合計ジャッジ時間 4,297 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
15,872 KB
testcase_01 AC 23 ms
15,872 KB
testcase_02 AC 161 ms
16,128 KB
testcase_03 AC 143 ms
16,256 KB
testcase_04 AC 147 ms
16,256 KB
testcase_05 AC 155 ms
16,256 KB
testcase_06 AC 157 ms
16,000 KB
testcase_07 AC 147 ms
16,256 KB
testcase_08 AC 146 ms
16,000 KB
testcase_09 AC 151 ms
16,256 KB
testcase_10 AC 145 ms
16,128 KB
testcase_11 AC 155 ms
16,000 KB
testcase_12 AC 154 ms
16,256 KB
testcase_13 AC 161 ms
16,000 KB
testcase_14 AC 158 ms
16,128 KB
testcase_15 AC 149 ms
16,128 KB
testcase_16 AC 24 ms
16,000 KB
testcase_17 AC 24 ms
16,256 KB
testcase_18 AC 174 ms
16,000 KB
testcase_19 AC 134 ms
16,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define N (read))
(define M (read))
(define v (make-vector M 0))
(dotimes [i N]
         (read-line)
         (dotimes [j M]
                  (when (char=? (read-char) #\x)
                        (inc! (vector-ref v j)))))
(print (+ 1 (fold max 0 (vector->list v))))
0