結果
| 問題 |
No.1591 Two Digits
|
| コンテスト | |
| ユーザー |
Ain48803949
|
| 提出日時 | 2021-07-09 21:41:59 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 733 bytes |
| コンパイル時間 | 118 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,776 KB |
| 最終ジャッジ日時 | 2024-07-01 15:39:01 |
| 合計ジャッジ時間 | 1,811 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 11 WA * 6 |
ソースコード
import bisect,collections,copy,heapq,itertools,math,string,sys,queue,time,random
input = lambda: sys.stdin.readline().rstrip()
def I(): return input()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return map(int,input().split())
def LIIS(): return list(map(int,input().split()))
def Base_n_to_10(X,n):
out = 0
for i in range(1,len(str(X))+1):
out += int(X[-i])*(n**(i-1))
return out#int out
def Base_10_to_n(X, n):
if (X//n):
return Base_10_to_n(X//n, n)+str(X%n)
return str(X%n)
INF=10**18
MOD=10**9+7
sys.setrecursionlimit(10**8)
##############################################################################
n=I()
if len(n)>=2:
print("Yes")
else:
print("No")
Ain48803949