結果
問題 | No.1255 ハイレーツ・オブ・ボリビアン |
ユーザー | yuusanlondon |
提出日時 | 2020-10-09 23:22:06 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,144 bytes |
コンパイル時間 | 274 ms |
コンパイル使用メモリ | 81,984 KB |
実行使用メモリ | 61,440 KB |
最終ジャッジ日時 | 2024-07-20 14:16:35 |
合計ジャッジ時間 | 1,824 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
51,840 KB |
testcase_01 | AC | 42 ms
52,608 KB |
testcase_02 | AC | 39 ms
52,480 KB |
testcase_03 | AC | 39 ms
52,096 KB |
testcase_04 | AC | 39 ms
52,608 KB |
testcase_05 | AC | 48 ms
59,904 KB |
testcase_06 | AC | 47 ms
59,264 KB |
testcase_07 | AC | 47 ms
59,648 KB |
testcase_08 | AC | 68 ms
60,508 KB |
testcase_09 | AC | 72 ms
60,672 KB |
testcase_10 | AC | 67 ms
60,544 KB |
testcase_11 | AC | 74 ms
60,544 KB |
testcase_12 | AC | 72 ms
61,440 KB |
testcase_13 | WA | - |
testcase_14 | AC | 180 ms
60,544 KB |
testcase_15 | AC | 68 ms
60,928 KB |
ソースコード
# Python3 program to calculate # Euler's Totient Function def phi(n): # Initialize result as n result = n; # Consider all prime factors # of n and subtract their # multiples from result p = 2; while(p * p <= n): # Check if p is a # prime factor. if (n % p == 0): # If yes, then # update n and result while (n % p == 0): n = int(n / p); result -= int(result / p); p += 1; # If n has a prime factor # greater than sqrt(n) # (There can be at-most # one such prime factor) if (n > 1): result -= int(result / n); return result; # This code is contributed # by mits t=int(input()) for _ in range(t): n=int(input()) if n==1: print(2) continue totient=phi(2*n-1) while True: flag=0 count=2 while count*count<=totient: if totient%count==0 and pow(2,totient//count,2*n-1)==1: totient=totient//count break count+=1 if count*count>totient: flag=1 if flag==1: break print(totient)