結果

問題 No.1940 Escape through + -
ユーザー n_getn_get
提出日時 2022-07-12 13:11:04
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-06-23 09:02:13
合計ジャッジ時間 3,142 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
17,408 KB
testcase_01 AC 35 ms
17,408 KB
testcase_02 AC 38 ms
17,280 KB
testcase_03 WA -
testcase_04 AC 37 ms
17,408 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 36 ms
17,408 KB
testcase_09 AC 38 ms
17,408 KB
testcase_10 WA -
testcase_11 AC 36 ms
17,408 KB
testcase_12 AC 36 ms
17,408 KB
testcase_13 WA -
testcase_14 AC 36 ms
17,152 KB
testcase_15 AC 36 ms
17,408 KB
testcase_16 AC 36 ms
17,280 KB
testcase_17 WA -
testcase_18 AC 36 ms
17,280 KB
testcase_19 WA -
testcase_20 AC 45 ms
17,536 KB
testcase_21 AC 46 ms
17,792 KB
testcase_22 AC 46 ms
17,664 KB
testcase_23 WA -
testcase_24 AC 136 ms
23,808 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 126 ms
23,808 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

(use srfi-1)
(let* [[N (read)][M (read)]]
  (print (if (zero? (mod (fold + (read) (list-tabulate N (^_ (read)))) M)) 'Yes 'No)))
0