結果
問題 |
No.169 何分かかるの!?
|
ユーザー |
|
提出日時 | 2018-06-22 02:40:49 |
言語 | Scheme (Gauche-0.9.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 118 bytes |
コンパイル時間 | 41 ms |
コンパイル使用メモリ | 6,812 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-06-30 17:51:59 |
合計ジャッジ時間 | 1,998 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 22 |
ソースコード
(define (solve N) (display(quotient N 2)) (display " ") (display (- N (quotient N 2))) (newline) ) (solve(read))