結果

問題 No.353 ヘイトプラス
ユーザー ちよちゃん
提出日時 2016-08-01 01:57:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 295 bytes
コンパイル時間 3,654 ms
コンパイル使用メモリ 73,832 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-07-03 22:17:51
合計ジャッジ時間 4,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class yuki353 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner scan = new Scanner(System.in);
		int a = scan.nextInt();
		int b = scan.nextInt();
		scan.close();
		System.out.println(a-(-b));
	}

}
0