結果
| 問題 | No.313 π |
| コンテスト | |
| ユーザー |
minami
|
| 提出日時 | 2019-03-26 15:54:28 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 243 bytes |
| 記録 | |
| コンパイル時間 | 56 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 13,824 KB |
| 最終ジャッジ日時 | 2026-09-13 15:35:08 |
| 合計ジャッジ時間 | 3,452 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 32 |
ソースコード
S = input()
cnt = {'1': 20069, '4': 19880, '5': 20203, '9': 19846, '2': 19902,
'6': 19911, '3': 20016, '8': 19964, '7': 20166, '0': 20111}
for c in S:
cnt[c] -= 1
cnt = sorted(cnt.items(), key=lambda x: x[1])
print(cnt[-1], cnt[0])
minami