結果
問題 |
No.313 π
|
ユーザー |
![]() |
提出日時 | 2019-12-03 01:54:32 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 468 bytes |
コンパイル時間 | 98 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 11,376 KB |
最終ジャッジ日時 | 2024-11-25 05:10:47 |
合計ジャッジ時間 | 2,048 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 8 WA * 24 |
ソースコード
import math import sys sys.setrecursionlimit(10 ** 6) int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def main(): s = format(math.pi, ".200005f") t = input() for sc, tc in zip(s, t): if sc != tc: print(tc, sc) break main()