結果

問題 No.1198 お菓子配り-1
ユーザー 小野寺健
提出日時 2021-11-02 12:58:47
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 116 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-10-11 11:39:24
合計ジャッジ時間 2,589 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13 WA * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:10: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

N = gets.to_i

if N == 1 then
	puts -1
elsif N % 2 == 1 then
	puts 1
elsif N % 4 == 0 then
	puts 1
else
	puts -1
end
0