結果

問題 No.353 ヘイトプラス
ユーザー takutakutakutaku
提出日時 2020-09-23 11:12:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 292 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 76,900 KB
実行使用メモリ 41,348 KB
最終ジャッジ日時 2024-06-27 16:20:03
合計ジャッジ時間 4,189 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,204 KB
testcase_01 AC 130 ms
41,296 KB
testcase_02 AC 131 ms
41,328 KB
testcase_03 AC 118 ms
39,820 KB
testcase_04 AC 118 ms
39,956 KB
testcase_05 AC 127 ms
41,024 KB
testcase_06 AC 128 ms
41,292 KB
testcase_07 AC 116 ms
39,736 KB
testcase_08 AC 129 ms
41,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	    
	    // 標準入力を受け取る
	    Scanner sc = new Scanner(System.in);
        long a = sc.nextLong();
        long b = sc.nextLong();
        
        System.out.println(a - (-b));
        
	}
}
0