結果
問題 | No.2314 Backflip |
ユーザー | no way |
提出日時 | 2023-05-26 21:26:04 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 196 bytes |
コンパイル時間 | 1,550 ms |
コンパイル使用メモリ | 164,820 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-25 04:42:44 |
合計ジャッジ時間 | 2,099 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 8 |
ソースコード
#include<bits/stdc++.h> using namespace std; char s[100]; int main(){ scanf("%s",s+1); int n=strlen(s+1); for (int i=1;i<n;i++) putchar(s[i]); if (s[n]=='0') putchar('1'); else putchar('0'); }