結果
問題 | No.5000 特殊ジャッジテスト(テスト用) |
ユーザー |
![]() |
提出日時 | 2015-07-16 15:25:22 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 492 bytes |
コンパイル時間 | 2,297 ms |
実行使用メモリ | 23,112 KB |
スコア | 2,032 |
最終ジャッジ日時 | 2018-03-12 00:01:50 |
ジャッジサーバーID (参考情報) |
judge6 / |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str; while (!"".equals(str = br.readLine())) { if (str == null) { break; } int source = Integer.parseInt(str); System.out.println("1 " + (source - 1)); } } }