結果
問題 | No.249 N言っちゃダメゲーム (2) |
ユーザー | Naoyk1212 |
提出日時 | 2015-07-24 22:57:43 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 388 bytes |
コンパイル時間 | 1,832 ms |
コンパイル使用メモリ | 75,276 KB |
実行使用メモリ | 56,720 KB |
最終ジャッジ日時 | 2024-07-08 13:28:21 |
合計ジャッジ時間 | 2,851 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = 1000; int[] n = new int[a]; int[] k = new int[a]; int counter = 0; for(int i = 0; i < a; i++){ n[i] = sc.nextInt(); k[i] = sc.nextInt(); if((n[i] - 1) % (k[i] + 1) != 0){ counter++; } } System.out.println(counter); } }