結果

問題 No.746 7の倍数
ユーザー akiraarika932
提出日時 2019-02-11 21:49:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 98 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-19 08:36:09
合計ジャッジ時間 1,964 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other RE * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n = int(input())
mother = 10 ** n
child = math.floor(mother / 7)
print(child / mother)
0