結果
| 問題 | 
                            No.8000 enuemu暗号
                             | 
                    
| コンテスト | |
| ユーザー | 
                            👑  | 
                    
| 提出日時 | 2022-08-23 14:23:57 | 
| 言語 | C++17(gcc12)  (gcc 12.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 1,732 bytes | 
| コンパイル時間 | 1,899 ms | 
| コンパイル使用メモリ | 196,576 KB | 
| 最終ジャッジ日時 | 2025-01-31 03:05:02 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | WA * 1 | 
ソースコード
#include<bits/stdc++.h>
using namespace std;
using uint = unsigned int;
using ll = long long;
#define CIN( LL , A ) LL A; cin >> A 
#define GETLINE( A ) string A; getline( cin , A ) 
#define GETLINE_SEPARATE( A , SEPARATOR ) string A; getline( cin , A , SEPARATOR ) 
#define FOR_LL( VAR , INITIAL , FINAL_PLUS_ONE ) for( ll VAR = INITIAL ; VAR < FINAL_PLUS_ONE ; VAR ++ ) 
#define FOR_ITR( ARRAY , ITR , END ) for( auto ITR = ARRAY .begin() , END = ARRAY .end() ; ITR != END ; ITR ++ ) 
#define REPEAT( HOW_MANY_TIMES ) FOR_LL( VARIABLE_FOR_REPEAT , 0 , HOW_MANY_TIMES ) 
#define RETURN( ANSWER ) cout << ( ANSWER ) << endl; return 0 
#define DOUBLE( PRECISION , ANSWER ) cout << fixed << setprecision( PRECISION ) << ( ANSWER ) << endl; return 0 
#define MIN( A , B ) A < B ? A : B;
#define MAX( A , B ) A < B ? B : A;
template <typename T> inline T Distance( const T& a , const T& b ){ return a < b ? b - a : a - b; }
int main(){
  CIN( string , S );
  ll size_S = S.size();
  string sample_imput = "pfnovuaxqwufmbgrihcdejkolsty";
  string sample_output = "orangecipherbqsuftlmdxynzvwj";
  ll size_sample = sample_imput.size();
  FOR_LL( i , 0 , size_S ){
    string c = S.substr( i , 1 );
    bool found = false;
    FOR_LL( j , 0 , size_sample ){
      if( c == sample_imput.substr( j , 1 ) ){
	cout << sample_output.substr( j , 1 );
	j = size_sample;
	found = true;
      }
    }
    if( !found ){
      FOR_LL( k , 0 , size_sample ){
	found = false;
	string d = sample_imput.substr( k , 1 );
	FOR_LL( j , 0 , size_sample ){
	  if( d == sample_imput.substr( j , 1 ) ){
	    found = true;
	  }
	}
	if( ! found ){
	  cout << d;
	  k = size_sample;
	}
      }
      if( found ){
	cout << c;
      }
    }
  }
  RETURN( "" );
}