結果
| 問題 |
No.313 π
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-03-24 22:48:03 |
| 言語 | Python2 (2.7.18) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 214 bytes |
| コンパイル時間 | 70 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-02 00:14:46 |
| 合計ジャッジ時間 | 1,690 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 32 |
ソースコード
from sympy import pi
input_str = raw_input()
char_cnt = len(input_str)
ans_pi = str(pi.evalf(len(input_str)-1))
for i in range(char_cnt):
if input_str[i] != ans_pi[i]:
print input_str[i], ans_pi[i]