結果
問題 | No.1198 お菓子配り-1 |
ユーザー | okuramasafumi |
提出日時 | 2020-11-13 18:42:23 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 263 bytes |
コンパイル時間 | 40 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 19,232 KB |
最終ジャッジ日時 | 2024-07-22 20:11:28 |
合計ジャッジ時間 | 3,882 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 100 ms
17,792 KB |
testcase_01 | WA | - |
testcase_02 | AC | 88 ms
12,288 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
n = gets.to_i a = Math.sqrt(n).to_i result = false while true val = 0 b = 1 while a > b val = a**2 - b**2 result = true and break if val == n break if val < n b += 1 end break if result break if val > n a += 1 end puts result ? 1 : 0