結果

問題 No.3060 サンプルケース至上主義
ユーザー efunyoefunyo
提出日時 2020-04-01 22:14:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 807 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 87,072 KB
実行使用メモリ 71,876 KB
最終ジャッジ日時 2023-09-09 18:34:55
合計ジャッジ時間 1,494 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
71,704 KB
testcase_01 AC 92 ms
71,876 KB
testcase_02 AC 93 ms
71,564 KB
testcase_03 AC 92 ms
71,864 KB
testcase_04 AC 93 ms
71,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#AC出てから!ファイル整理!
#Twitterしない!耳栓!
#42
#YNU

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**7)
from collections import Counter, deque
#from collections import defaultdict
from itertools import combinations, permutations, accumulate, groupby
#from itertools import product
from bisect import bisect_left,bisect_right
from heapq import heapify, heappop, heappush
from math import floor, ceil
#from operator import itemgetter

#inf = 10**17
mod = 10**9 + 7

s = input().rstrip()

if s=='0':
    print('Nothing')
elif s=='3.14159265':
    print('pi')
elif s=='くぁwせdrftgyふじこlp':
    print('さmpぇ')
elif s=='All your base are belong to us.':
    print('3\n4\n4\n3\n6\n2\n2')
else:
    print('九蓮宝燈\nThirteen Orphans')
0