結果
| 問題 |
No.643 Two Operations No.2
|
| コンテスト | |
| ユーザー |
n_get
|
| 提出日時 | 2022-07-04 13:58:06 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 158 bytes |
| コンパイル時間 | 92 ms |
| コンパイル使用メモリ | 7,076 KB |
| 実行使用メモリ | 16,256 KB |
| 最終ジャッジ日時 | 2024-12-14 03:07:38 |
| 合計ジャッジ時間 | 1,319 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 13 |
ソースコード
(let* [[x (read)][y (read)]]
(print (cond [(= x y) 0]
[(zero? y) 1]
[(zero? x) 2]
[else -1]])))
n_get