結果
問題 | No.136 Yet Another GCD Problem |
ユーザー |
![]() |
提出日時 | 2015-01-25 23:35:38 |
言語 | C# (csc 3.9.0) |
結果 |
AC
|
実行時間 | 74 ms / 5,000 ms |
コード長 | 2,217 bytes |
コンパイル時間 | 2,273 ms |
使用メモリ | 15,032 KB |
最終ジャッジ日時 | 2023-01-20 12:46:10 |
合計ジャッジ時間 | 6,876 ms |
ジャッジサーバーID (参考情報) |
judge13 / judge12 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
14,900 KB |
testcase_01 | AC | 59 ms
14,844 KB |
testcase_02 | AC | 59 ms
14,840 KB |
testcase_03 | AC | 68 ms
14,992 KB |
testcase_04 | AC | 74 ms
14,784 KB |
testcase_05 | AC | 62 ms
14,832 KB |
testcase_06 | AC | 61 ms
14,852 KB |
testcase_07 | AC | 62 ms
14,848 KB |
testcase_08 | AC | 66 ms
14,920 KB |
testcase_09 | AC | 60 ms
14,856 KB |
testcase_10 | AC | 67 ms
14,836 KB |
testcase_11 | AC | 70 ms
14,884 KB |
testcase_12 | AC | 58 ms
14,860 KB |
testcase_13 | AC | 64 ms
15,004 KB |
testcase_14 | AC | 74 ms
14,856 KB |
testcase_15 | AC | 73 ms
14,884 KB |
testcase_16 | AC | 71 ms
14,896 KB |
testcase_17 | AC | 69 ms
14,920 KB |
testcase_18 | AC | 58 ms
14,976 KB |
testcase_19 | AC | 70 ms
14,944 KB |
testcase_20 | AC | 66 ms
14,900 KB |
testcase_21 | AC | 58 ms
14,908 KB |
testcase_22 | AC | 58 ms
14,884 KB |
testcase_23 | AC | 59 ms
15,032 KB |
testcase_24 | AC | 58 ms
14,884 KB |
testcase_25 | AC | 58 ms
14,936 KB |
testcase_26 | AC | 58 ms
14,892 KB |
testcase_27 | AC | 69 ms
14,848 KB |
testcase_28 | AC | 67 ms
14,836 KB |
testcase_29 | AC | 59 ms
14,912 KB |
testcase_30 | AC | 58 ms
14,840 KB |
testcase_31 | AC | 59 ms
14,780 KB |
testcase_32 | AC | 58 ms
14,828 KB |
testcase_33 | AC | 58 ms
14,796 KB |
testcase_34 | AC | 63 ms
14,840 KB |
testcase_35 | AC | 67 ms
14,952 KB |
testcase_36 | AC | 61 ms
14,872 KB |
testcase_37 | AC | 72 ms
14,892 KB |
testcase_38 | AC | 57 ms
14,908 KB |
testcase_39 | AC | 58 ms
14,912 KB |
testcase_40 | AC | 57 ms
14,964 KB |
testcase_41 | AC | 58 ms
14,740 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.IO; using System.Text; using System.Linq; using System.Diagnostics; using System.Collections.Generic; using Enu = System.Linq.Enumerable; using System.Numerics; class Program { void Solve() { int Sum = reader.Int(), MaxLen = reader.Int(); BigInteger ans = 1; for (int a = 2; a < Sum; a++) { int b = Sum - a; var gcd = BigInteger.GreatestCommonDivisor(a, b); if (gcd > ans) ans = gcd; } Console.WriteLine(ans); } static void Main() { new Program().Solve(); } Reader reader = new Reader(Console.In); class Reader { private readonly TextReader reader; private readonly char[] separator = { ' ' }; private readonly StringSplitOptions removeOp = StringSplitOptions.RemoveEmptyEntries; private string[] A = new string[0]; private int i; public Reader(TextReader r) { reader = r; } public bool HasNext() { return Enqueue(); } public string String() { return Dequeue(); } public int Int() { return int.Parse(Dequeue()); } public long Long() { return long.Parse(Dequeue()); } public double Double() { return double.Parse(Dequeue()); } public int[] IntLine() { var s = Line(); return s == "" ? new int[0] : Array.ConvertAll(Split(s), int.Parse); } public int[] IntArray(int N) { return Enumerable.Range(0, N).Select(i => Int()).ToArray(); } public int[][] IntGrid(int H) { return Enumerable.Range(0, H).Select(i => IntLine()).ToArray(); } public string[] StringArray(int N) { return Enumerable.Range(0, N).Select(i => Line()).ToArray(); } public string Line() { return reader.ReadLine().Trim(); } private string[] Split(string s) { return s.Split(separator, removeOp); } private bool Enqueue() { if (i < A.Length) return true; string line = reader.ReadLine(); if (line == null) return false; if (line == "") return Enqueue(); A = Split(line); i = 0; return true; } private string Dequeue() { Enqueue(); return A[i++]; } } }