結果
問題 | No.339 何人が回答したのか |
ユーザー | AreTrash |
提出日時 | 2016-04-09 09:36:36 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 22 ms / 1,000 ms |
コード長 | 545 bytes |
コンパイル時間 | 2,305 ms |
コンパイル使用メモリ | 108,464 KB |
実行使用メモリ | 25,808 KB |
最終ジャッジ日時 | 2024-10-04 05:02:31 |
合計ジャッジ時間 | 4,705 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 61 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace No339_1{ public class Program{ public static void Main(string[] args){ var gcd = 100; var cnt = int.Parse(Console.ReadLine()); for(var i = 0; i < cnt; i++){ gcd = Gcd(gcd, int.Parse(Console.ReadLine())); } Console.WriteLine(100 / gcd); } public static int Gcd(int x, int y){ int max = Math.Max(x, y), min = Math.Min(x, y); return max % min == 0 ? min : Gcd(min, max % min); } } }