結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー convexineqconvexineq
提出日時 2021-06-11 21:30:39
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 82 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 87,212 KB
実行使用メモリ 71,472 KB
最終ジャッジ日時 2023-08-21 11:36:29
合計ジャッジ時間 4,099 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,352 KB
testcase_01 AC 70 ms
71,144 KB
testcase_02 AC 70 ms
71,308 KB
testcase_03 AC 69 ms
71,120 KB
testcase_04 AC 69 ms
71,284 KB
testcase_05 AC 69 ms
71,232 KB
testcase_06 AC 70 ms
71,300 KB
testcase_07 AC 71 ms
71,040 KB
testcase_08 AC 69 ms
71,308 KB
testcase_09 AC 69 ms
71,280 KB
testcase_10 AC 70 ms
71,340 KB
testcase_11 AC 70 ms
71,196 KB
testcase_12 AC 70 ms
71,300 KB
testcase_13 AC 69 ms
71,368 KB
testcase_14 AC 68 ms
71,472 KB
testcase_15 AC 68 ms
71,104 KB
testcase_16 AC 69 ms
71,360 KB
testcase_17 AC 69 ms
71,144 KB
testcase_18 AC 69 ms
71,324 KB
testcase_19 AC 68 ms
71,040 KB
testcase_20 AC 68 ms
71,292 KB
testcase_21 AC 69 ms
71,004 KB
testcase_22 AC 70 ms
71,276 KB
testcase_23 AC 71 ms
71,300 KB
testcase_24 AC 70 ms
71,420 KB
testcase_25 AC 70 ms
71,344 KB
testcase_26 AC 70 ms
71,288 KB
testcase_27 AC 70 ms
71,376 KB
testcase_28 AC 69 ms
71,324 KB
testcase_29 AC 69 ms
71,036 KB
testcase_30 AC 70 ms
71,204 KB
testcase_31 AC 70 ms
71,372 KB
testcase_32 AC 68 ms
71,040 KB
testcase_33 AC 71 ms
71,040 KB
testcase_34 AC 69 ms
71,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s,t,c = input().split()
print("YES" if eval(s+(c*2 if c=="=" else c)+t) else "NO")
0