結果

問題 No.746 7の倍数
ユーザー mlihua09mlihua09
提出日時 2020-09-04 01:10:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 87,700 KB
実行使用メモリ 72,740 KB
最終ジャッジ日時 2023-08-16 00:15:49
合計ジャッジ時間 3,461 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,964 KB
testcase_01 AC 76 ms
72,608 KB
testcase_02 AC 73 ms
72,520 KB
testcase_03 AC 75 ms
72,476 KB
testcase_04 AC 74 ms
72,484 KB
testcase_05 AC 75 ms
72,520 KB
testcase_06 AC 73 ms
72,584 KB
testcase_07 AC 74 ms
72,484 KB
testcase_08 AC 74 ms
72,564 KB
testcase_09 AC 73 ms
72,624 KB
testcase_10 AC 74 ms
72,572 KB
testcase_11 AC 74 ms
72,616 KB
testcase_12 AC 73 ms
72,228 KB
testcase_13 AC 75 ms
72,656 KB
testcase_14 AC 74 ms
72,740 KB
testcase_15 AC 73 ms
72,288 KB
testcase_16 AC 74 ms
72,220 KB
testcase_17 AC 74 ms
72,556 KB
testcase_18 AC 74 ms
72,476 KB
testcase_19 AC 74 ms
72,464 KB
testcase_20 AC 75 ms
72,440 KB
testcase_21 AC 74 ms
72,620 KB
testcase_22 AC 76 ms
72,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

if N == 0:
    print(0)
    
else:
    print('0.', end='')
    ans = '142857' * 10 ** 5
    print(ans[:N])
0