結果

問題 No.8058 M + D Problem
ユーザー NatsubiSogan
提出日時 2020-07-08 22:18:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 61 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-04 21:21:24
合計ジャッジ時間 1,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:2: SyntaxWarning: invalid decimal literal
  print(""if m==4and d==1else m+d)
Main.py:2: SyntaxWarning: invalid decimal literal
  print(""if m==4and d==1else m+d)

ソースコード

diff #

m,d=map(int,input().split())
print(""if m==4and d==1else m+d)
0