結果
問題 | No.1198 お菓子配り-1 |
ユーザー |
|
提出日時 | 2021-11-02 13:00:40 |
言語 | Ruby (3.4.1) |
結果 |
AC
|
実行時間 | 92 ms / 2,000 ms |
コード長 | 110 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-10-11 11:58:22 |
合計ジャッジ時間 | 2,929 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 14 |
コンパイルメッセージ
Main.rb:4: warning: ambiguous first argument; put parentheses or a space even after `-' operator Main.rb:8: warning: ambiguous first argument; put parentheses or a space even after `-' operator Syntax OK
ソースコード
N = gets.to_iif N == 1 or N == 4 thenputs -1elsif N % 2 == 1 or N % 4 == 0 thenputs 1elseputs -1end