結果
問題 | No.1469 programing |
ユーザー | pypypymi |
提出日時 | 2022-03-11 18:52:18 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 230 bytes |
コンパイル時間 | 263 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 274,356 KB |
最終ジャッジ日時 | 2024-09-15 22:30:54 |
合計ジャッジ時間 | 7,832 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,216 KB |
testcase_01 | AC | 39 ms
51,840 KB |
testcase_02 | AC | 39 ms
52,224 KB |
testcase_03 | AC | 38 ms
51,712 KB |
testcase_04 | AC | 40 ms
52,608 KB |
testcase_05 | AC | 50 ms
60,672 KB |
testcase_06 | AC | 40 ms
52,736 KB |
testcase_07 | AC | 45 ms
60,032 KB |
testcase_08 | AC | 358 ms
84,992 KB |
testcase_09 | AC | 728 ms
98,032 KB |
testcase_10 | AC | 579 ms
93,016 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
s = input() s2 = s+"0" index = 0 result = "" while index < len(s): if s2[index]==s2[index+1]: result+=s2[index] index+=2 else: result+=s2[index] index+=1 print(result)