結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | kk_ken_ken |
提出日時 | 2018-12-20 22:12:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 201 bytes |
コンパイル時間 | 349 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,248 KB |
最終ジャッジ日時 | 2024-11-18 16:33:53 |
合計ジャッジ時間 | 67,306 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
21,248 KB |
testcase_01 | AC | 27 ms
21,120 KB |
testcase_02 | AC | 27 ms
21,248 KB |
testcase_03 | AC | 420 ms
17,440 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
ソースコード
n = int(input()) for i in range(n): x = int(input()) for j in range(2,x//2 + 1): if x % j == 0 : print(x,0) break if j == x // 2: print(x,1)