結果
問題 | No.481 1から10 |
ユーザー | Daigo HIROOKA |
提出日時 | 2018-05-13 22:28:54 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 373 bytes |
コンパイル時間 | 3,560 ms |
コンパイル使用メモリ | 74,052 KB |
実行使用メモリ | 54,628 KB |
最終ジャッジ日時 | 2024-06-28 10:42:40 |
合計ジャッジ時間 | 5,137 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 128 ms
41,388 KB |
ソースコード
import java.util.Scanner; public class FromOnetoTen{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); for(int i = 1; i <= 9; i++){ int b = sc.nextInt(); if(b != i){ System.out.println(i); System.exit(1); } } System.out.println(10); } }