結果

問題 No.442 和と積
ユーザー ixTL255
提出日時 2017-01-27 17:51:02
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 235 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 105,216 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-12-23 15:47:25
合計ジャッジ時間 2,402 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 RE * 1
other AC * 4 RE * 14
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using c=System.Console;
using System.Linq;
public class Y{
public static void Main(){
var a=c.ReadLine().Split(' ').Select(n=>int.Parse(n)).ToList();		c.WriteLine(System.Numerics.BigInteger.GreatestCommonDivisor(a[0]*a[1],a.Sum()));
}}
0