結果
問題 | No.9005 実行時間/使用メモリテスト(テスト用) |
ユーザー | ぴろず |
提出日時 | 2015-02-16 23:43:31 |
言語 | Java (openjdk 23) |
結果 |
MLE
|
実行時間 | - |
コード長 | 471 bytes |
コンパイル時間 | 2,531 ms |
コンパイル使用メモリ | 74,428 KB |
実行使用メモリ | 497,676 KB |
最終ジャッジ日時 | 2024-06-23 20:49:33 |
合計ジャッジ時間 | 8,800 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | TLE | - |
testcase_04 | RE | - |
ソースコード
import java.util.Scanner;public class Main {static int[] sizeMB = {50,80,120,450,1000};public static void main(String[] args) {Scanner sc = new Scanner(System.in);int n = sc.nextInt();int m = sizeMB[n-1] * 1000 * 1000 / 4;int[] largeArray = new int[m];for(int i=0;i<m;i++) {largeArray[i] = (int) (Math.random() * Integer.MAX_VALUE);}int xor = 0;for(int i=0;i<m;i++) {xor ^= largeArray[i];}System.out.println(xor); //WA}}