結果
| 問題 | No.9001 標準入出力の練習問題(テスト用) |
| ユーザー |
Force_Access
|
| 提出日時 | 2016-02-10 00:00:55 |
| 言語 | Java (openjdk 26.0.2.1 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 59 ms / 1,000 ms |
| + 490µs | |
| コード長 | 262 bytes |
| 記録 | |
| コンパイル時間 | 2,252 ms |
| コンパイル使用メモリ | 84,588 KB |
| 実行使用メモリ | 45,772 KB |
| 最終ジャッジ日時 | 2026-09-01 23:17:02 |
| 合計ジャッジ時間 | 3,299 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 |
ソースコード
import java.util.*;
public class A{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int x = a + b;
String c = sc.next();
System.out.print(x);
System.out.print(" ");
System.out.print(c);
}
}
Force_Access