結果

問題 No.1499 羊が、何匹だっけ
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-26 07:14:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 87,016 KB
実行使用メモリ 71,472 KB
最終ジャッジ日時 2023-08-26 07:14:07
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,416 KB
testcase_01 AC 66 ms
71,472 KB
testcase_02 AC 76 ms
71,036 KB
testcase_03 AC 67 ms
71,004 KB
testcase_04 AC 64 ms
71,392 KB
testcase_05 AC 66 ms
71,452 KB
testcase_06 AC 67 ms
71,176 KB
testcase_07 AC 66 ms
71,408 KB
testcase_08 AC 65 ms
71,316 KB
testcase_09 AC 67 ms
71,304 KB
testcase_10 AC 64 ms
71,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
	hit=input()
	print(hit[:11]+str(int(hit[11:-5])+1)+hit[-5:])
0