結果
| 問題 |
No.8058 M + D Problem
|
| コンテスト | |
| ユーザー |
AreTrash
|
| 提出日時 | 2020-03-28 15:26:56 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 304 bytes |
| コンパイル時間 | 773 ms |
| コンパイル使用メモリ | 107,480 KB |
| 実行使用メモリ | 26,000 KB |
| 最終ジャッジ日時 | 2024-06-27 04:35:05 |
| 合計ジャッジ時間 | 2,376 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 WA * 1 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
namespace M_DProblem
{
class Program
{
static void Main(string[] args)
{
var input = Console.ReadLine().Split(' ');
var M = int.Parse(input[0]);
var D = int.Parse(input[1]);
Console.WriteLine(M + D);
}
}
}
AreTrash