結果

問題 No.1533 Don't be Negative!
ユーザー googol_S0
提出日時 2021-06-02 22:50:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 184 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-11-15 18:47:36
合計ジャッジ時間 4,330 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 53
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
S=sys.stdin.readlines()
assert(len(S)==1)
N,M,K=map(int,S[0].split())
assert(1<=N<=40000)
assert(1<=M<=4)
assert(0<=K<=M)
T=str(N)+' '+str(M)+' '+str(K)+'\n'
assert(T==S[0])
0