結果
問題 | No.8059 tan |
ユーザー |
![]() |
提出日時 | 2025-06-22 15:49:24 |
言語 | Scheme (Gauche-0.9.15) |
結果 |
AC
|
実行時間 | 86 ms / 2,000 ms |
コード長 | 733 bytes |
コンパイル時間 | 305 ms |
コンパイル使用メモリ | 8,100 KB |
実行使用メモリ | 23,552 KB |
最終ジャッジ日時 | 2025-06-22 15:49:25 |
合計ジャッジ時間 | 961 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 3 |
ソースコード
(use scheme.list) (use util.match) (use srfi.13) ; string (use srfi.42) ; list-ec (define input read-line) (define (ii) (string->number (read-line))) (define (li) (let ((s (read-line))) (map string->number (string-split s " ")))) (define (prn . args) (for-each (lambda (i x) (when (> i 0) (display " ")) (display x)) (iota (length args)) args) (newline)) (define int string->number) (define (minmax* xs) (apply min&max xs)) (define (sum . xs) (apply + xs)) (define (sum* xs) (apply + xs)) (define divmod div-and-mod) (let ((T (ii))) (dotimes (_ T) (let ((x (ii))) (if (or (= x 0) (= x 45)) (prn "Y") (prn "N")))))