結果
| 問題 |
No.1485 運賃
|
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-31 17:56:20 |
| 言語 | C# (.NET 8.0.404) |
| 結果 |
AC
|
| 実行時間 | 50 ms / 2,000 ms |
| コード長 | 216 bytes |
| コンパイル時間 | 14,519 ms |
| コンパイル使用メモリ | 171,436 KB |
| 実行使用メモリ | 187,476 KB |
| 最終ジャッジ日時 | 2025-03-31 17:57:32 |
| 合計ジャッジ時間 | 11,350 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (95 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
class Program
{
static void Main(string[] args)
{
string[] str = Console.ReadLine().Split(' ');
Console.WriteLine(int.Parse(str[0])+ int.Parse(str[1]));
}
}
Maeda