結果

問題 No.1264 010
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-08 09:22:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 1,000 ms
コード長 77 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 86,648 KB
実行使用メモリ 71,276 KB
最終ジャッジ日時 2023-09-30 09:15:24
合計ジャッジ時間 1,874 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,276 KB
testcase_01 AC 64 ms
71,164 KB
testcase_02 AC 62 ms
70,952 KB
testcase_03 AC 64 ms
71,096 KB
testcase_04 AC 65 ms
71,188 KB
testcase_05 AC 65 ms
71,272 KB
testcase_06 AC 64 ms
70,920 KB
testcase_07 AC 65 ms
71,164 KB
testcase_08 AC 67 ms
71,152 KB
testcase_09 AC 65 ms
70,856 KB
testcase_10 AC 62 ms
71,168 KB
testcase_11 AC 65 ms
71,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 0:
    print(1)
else:
    print("0" * (n-1) + "010")
0