結果
問題 | No.353 ヘイトプラス |
ユーザー |
![]() |
提出日時 | 2016-07-01 18:20:42 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 108 ms / 1,000 ms |
コード長 | 404 bytes |
コンパイル時間 | 2,125 ms |
コンパイル使用メモリ | 76,340 KB |
実行使用メモリ | 54,384 KB |
最終ジャッジ日時 | 2024-06-29 14:02:38 |
合計ジャッジ時間 | 3,569 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
import java.io.*;import java.math.BigDecimal;import java.util.*;public class Main {static int[] vy = {1,0,-1,0};static int[] vx = {0,1,0,-1};public static void main(String[] args) {Scanner sc = new Scanner(System.in);PrintWriter out = new PrintWriter(System.out);Integer A = new Integer(sc.next());Integer B = new Integer(sc.next());System.out.println(Integer.sum(A, B));}}