結果
問題 | No.1006 Share an Integer |
ユーザー | komkompi |
提出日時 | 2020-03-22 17:01:37 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 617 bytes |
コンパイル時間 | 1,591 ms |
コンパイル使用メモリ | 81,856 KB |
実行使用メモリ | 117,176 KB |
最終ジャッジ日時 | 2024-06-07 00:55:32 |
合計ジャッジ時間 | 4,560 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
57,344 KB |
testcase_01 | AC | 38 ms
51,968 KB |
testcase_02 | AC | 46 ms
60,160 KB |
testcase_03 | RE | - |
testcase_04 | AC | 48 ms
60,544 KB |
testcase_05 | AC | 50 ms
62,464 KB |
testcase_06 | AC | 50 ms
61,824 KB |
testcase_07 | AC | 51 ms
62,976 KB |
testcase_08 | AC | 49 ms
61,824 KB |
testcase_09 | AC | 51 ms
62,720 KB |
testcase_10 | AC | 51 ms
62,592 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
# coding: utf-8 # Your code here! def count(num): N=int(num**0.5)//1 count=0 for i in range(1,N+1): if num/i==num//i: count+=2 if num**0.5==N: count-=1 return count X=int(input()) A=X//2 ans=[] for a in range(1,A+1): b=X-a fa=a-count(a) fb=b-count(b) score=abs(fa-fb) ans.append([score,a,b]) ans.append([score,b,a]) ans.sort(key=lambda x: x[1]) ans.sort(key=lambda x: x[0]) base=ans[0][0] index=0 while ans[index][0]==base: print(ans[index][1],ans[index][2]) if ans[index]==ans[index+1]: index+=1 index+=1