結果

問題 No.964 2020
ユーザー Co-3Co-3
提出日時 2020-08-25 21:44:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 668 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-24 04:49:00
合計ジャッジ時間 1,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
if a == 1:
    print(1)
elif a == 2:
    print(1122)
elif a == 3:
    print(111222333)
elif a == 4:
    print(1111222233334444)
elif a == 5:
    print(1111122222333334444455555)
elif a == 6:
    print(111111222222333333444444555555666666)
elif a == 7:
    print(1111111222222233333334444444555555566666667777777)
elif a == 8:
    print(111111112222222233333333444444445555555566666666777777778888888899999999)
elif a == 9:
    print(123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789)
else:
    print(1234567891234567891234567891234567891234567891234567891234567891234567891234567891234567891234567890000000000)
0