結果

問題 No.3060 サンプルケース至上主義
ユーザー 👑 tamatotamato
提出日時 2020-04-01 21:29:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 86,640 KB
実行使用メモリ 71,032 KB
最終ジャッジ日時 2023-09-09 15:48:52
合計ジャッジ時間 1,217 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
70,884 KB
testcase_01 AC 69 ms
70,792 KB
testcase_02 AC 70 ms
71,032 KB
testcase_03 AC 69 ms
71,020 KB
testcase_04 AC 74 ms
70,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    line = input().rstrip('\n')
    if line == '0':
        print('Nothing')
    elif line == '3.14159265':
        print('pi')
    elif line == '1112345678999+X':
        print('九蓮宝燈')
        print('Thirteen Orphans')
    elif line == 'All your base are belong to us.':
        print(3)
        print(4)
        print(4)
        print(3)
        print(6)
        print(2)
        print(2)
    else:
        print('さmpぇ')


if __name__ == '__main__':
    main()
0