結果
問題 | No.481 1から10 |
ユーザー | Yosuke Yamaguchi |
提出日時 | 2020-12-29 23:39:29 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 544 bytes |
コンパイル時間 | 3,337 ms |
コンパイル使用メモリ | 74,564 KB |
実行使用メモリ | 54,696 KB |
最終ジャッジ日時 | 2024-10-06 08:28:00 |
合計ジャッジ時間 | 4,941 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | RE | - |
ソースコード
import java.util.Scanner; import javax.xml.namespace.QName; // https://yukicoder.me/problems/no/481 public class OneToTen481 { public static void main(String[] args) { // 標準入力から読み込む際に、Scan Scanner sc = new Scanner(System.in); // String 1つ分を読み込む int result = 0; while (result < 10) { int s1 = Integer.parseInt(sc.next()); result += 1; if (s1 != result) { // 標準出力に書き出す。 System.out.println(result); } ; } } }