結果

問題 No.8043 yukicoderへようこそ!
ユーザー titia
提出日時 2019-04-01 21:31:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 289 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-26 11:19:13
合計ジャッジ時間 767 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

X=input()

if X in ["5","Welcome to yukicoder!","1+2+10","Let's enjoy"]:
    print("Hello World!")
elif " " in X:
    S=input()
    P,Q=map(int,X.split())
    print(P+Q,S)
elif int(X)==1:
    print(1)
elif int(X)==3:
    print(150)


elif 1<=int(X)<=100:
    X=int(X)
    print(X*(X+1)//2)
0