結果
問題 | No.383 レーティング |
ユーザー |
|
提出日時 | 2020-03-28 11:23:40 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 283 bytes |
コンパイル時間 | 789 ms |
コンパイル使用メモリ | 112,896 KB |
実行使用メモリ | 29,812 KB |
最終ジャッジ日時 | 2025-01-02 10:57:54 |
合計ジャッジ時間 | 1,848 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;using System.Linq;public class P0383 {public static void Main() {var ab = Console.ReadLine().Trim().Split(' ').Select(int.Parse).ToList();var a = ab[0];var b = ab[1];Console.WriteLine((b - a > 0 ? "+" : "") + (b - a));}}