結果
問題 | No.1198 お菓子配り-1 |
ユーザー | Lily89164763 |
提出日時 | 2020-08-28 21:23:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,411 bytes |
コンパイル時間 | 2,565 ms |
コンパイル使用メモリ | 114,944 KB |
実行使用メモリ | 26,208 KB |
最終ジャッジ日時 | 2024-11-13 23:46:03 |
合計ジャッジ時間 | 1,997 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
25,948 KB |
testcase_01 | AC | 24 ms
26,008 KB |
testcase_02 | AC | 24 ms
23,908 KB |
testcase_03 | AC | 25 ms
25,948 KB |
testcase_04 | AC | 24 ms
23,908 KB |
testcase_05 | AC | 24 ms
23,840 KB |
testcase_06 | AC | 25 ms
26,208 KB |
testcase_07 | AC | 25 ms
25,948 KB |
testcase_08 | AC | 24 ms
24,108 KB |
testcase_09 | AC | 24 ms
24,156 KB |
testcase_10 | AC | 24 ms
24,108 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 25 ms
24,116 KB |
testcase_17 | AC | 25 ms
26,000 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using CompLib.Util; public class Program { public void Solve() { var sc = new Scanner(); long n = sc.NextLong(); for (long l = 1; l * l <= n; l++) { if (n % l == 0) { long r = n / l; // a+b = r // a-b = l if ((l + r) % 2 != 0) continue; long a = (l + r) / 2; long b = r - a; if (a <= 0 || b <= 0) continue; Console.WriteLine(1); return; } } Console.WriteLine("-1"); } public static void Main(string[] args) => new Program().Solve(); } namespace CompLib.Util { using System; using System.Linq; class Scanner { private string[] _line; private int _index; private const char Separator = ' '; public Scanner() { _line = new string[0]; _index = 0; } public string Next() { if (_index >= _line.Length) { string s; do { s = Console.ReadLine(); } while (s.Length == 0); _line = s.Split(Separator); _index = 0; } return _line[_index++]; } public string ReadLine() { _index = _line.Length; return Console.ReadLine(); } public int NextInt() => int.Parse(Next()); public long NextLong() => long.Parse(Next()); public double NextDouble() => double.Parse(Next()); public decimal NextDecimal() => decimal.Parse(Next()); public char NextChar() => Next()[0]; public char[] NextCharArray() => Next().ToCharArray(); public string[] Array() { string s = Console.ReadLine(); _line = s.Length == 0 ? new string[0] : s.Split(Separator); _index = _line.Length; return _line; } public int[] IntArray() => Array().Select(int.Parse).ToArray(); public long[] LongArray() => Array().Select(long.Parse).ToArray(); public double[] DoubleArray() => Array().Select(double.Parse).ToArray(); public decimal[] DecimalArray() => Array().Select(decimal.Parse).ToArray(); } }