結果

問題 No.3060 サンプルケース至上主義
ユーザー pekempeypekempey
提出日時 2020-04-01 21:35:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 282 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 10,528 KB
実行使用メモリ 7,856 KB
最終ジャッジ日時 2023-09-09 16:51:59
合計ジャッジ時間 712 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,744 KB
testcase_01 AC 15 ms
7,804 KB
testcase_02 RE -
testcase_03 AC 17 ms
7,808 KB
testcase_04 AC 15 ms
7,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = {
  '0': 'Nothing',
  '3.14159265': 'pi',
  """1112345678999+X
19m19p19s東南西北白發中+Y""":
"""九蓮宝燈""",
"""All your base are belong to us.""":
"""3
4
4
3
6
2
2""",
"""くぁwせdrftgyふじこlp""":
"""さmpぇ"""
}

s = input()
print(m[s])
0