結果

問題 No.746 7の倍数
ユーザー teru99teru99
提出日時 2019-07-18 14:08:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 130 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-25 20:24:05
合計ジャッジ時間 2,287 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 1 RE * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8
n = int(input())
#割り算切り捨てで倍数の個数求まる
print(0) if n == 0 else print("0."+str(10**n//7))
0